From 82456efb6e9295955929a39d8cdc0da9fdf8332b Mon Sep 17 00:00:00 2001 From: JohT <7671054+JohT@users.noreply.github.com> Date: Sun, 26 Jan 2025 10:37:46 +0100 Subject: [PATCH] Generate analysis results references documentation --- ...nternal-report-reference-documentation.yml | 76 ++ .github/workflows/java-code-analysis.yml | 2 + .../workflows/typescript-code-analysis.yml | 2 + COMMANDS.md | 42 + README.md | 12 + analysis-results/CSV_REPORTS.md | 1110 +++++++++++++++++ analysis-results/IMAGES.md | 468 +++++++ analysis-results/JUPYTER_REPORTS.md | 131 ++ .../generateCsvReportReference.sh | 62 + .../generateImageReference.sh | 49 + .../generateJupyterReportReference.sh | 56 + .../generateReportReferences.sh | 27 + 12 files changed, 2037 insertions(+) create mode 100644 .github/workflows/internal-report-reference-documentation.yml create mode 100644 COMMANDS.md create mode 100644 analysis-results/CSV_REPORTS.md create mode 100644 analysis-results/IMAGES.md create mode 100644 analysis-results/JUPYTER_REPORTS.md create mode 100755 documentation/analysis-reports-reference/generateCsvReportReference.sh create mode 100755 documentation/analysis-reports-reference/generateImageReference.sh create mode 100755 documentation/analysis-reports-reference/generateJupyterReportReference.sh create mode 100755 documentation/analysis-reports-reference/generateReportReferences.sh diff --git a/.github/workflows/internal-report-reference-documentation.yml b/.github/workflows/internal-report-reference-documentation.yml new file mode 100644 index 00000000..e861c4af --- /dev/null +++ b/.github/workflows/internal-report-reference-documentation.yml @@ -0,0 +1,76 @@ +name: Generate report reference documentation + +on: + push: + branches: + - main + paths: + - "analysis-results/**" # Only run on changed analysis results + - "!analysis-results/*.md" # Ignore report reference documentation changes (endless loop prevention) + - ".github/workflows/internal-report-reference-documentation.yml" # Also run when this file was changed + pull_request: + branches: + - main + paths: + - "analysis-results/**" # Only run on changed analysis results + - "!analysis-results/*.md" # Ignore report reference documentation changes (endless loop prevention) + - ".github/workflows/internal-report-reference-documentation.yml" # Also run when this file was changed + +jobs: + generate-report-reference-documentation: + runs-on: ubuntu-latest + outputs: + generated_documents_changed: ${{ steps.set-generated_documents_changed.outputs.generated_documents_changed }} + documentation-upload-name: ${{ steps.set-documentation-upload-name.outputs.documentation-upload-name }} + + steps: + - name: Checkout git repository + uses: actions/checkout@v4 + + - name: Generate report reference document + working-directory: analysis-results + run: | + ./../documentation/analysis-reports-reference/generateReportReferences.sh + + - name: Use git to detect changes in the regenerated documentation and set generated_documents_changed + working-directory: analysis-results + id: set-generated_documents_changed + run: | + git diff --quiet || echo "generated_documents_changed=true" >> "$GITHUB_OUTPUT" + git --no-pager diff --name-only + + - name: Display generated_documents_changed + run: echo "generated_documents_changed=${{ steps.set-generated_documents_changed.outputs.generated_documents_changed }}" + + - name: Generate ARTIFACT_UPLOAD_ID + if: steps.set-generated_documents_changed.outputs.generated_documents_changed == 'true' + run: echo "ARTIFACT_UPLOAD_ID=$(LC_ALL=C tr -dc 'A-Za-z0-9' < /dev/urandom | head -c 10)" >> $GITHUB_ENV + + - name: Set documentation-upload-name + if: steps.set-generated_documents_changed.outputs.generated_documents_changed == 'true' + id: set-documentation-upload-name + run: echo "documentation-upload-name=report-reference-documentation-${{ env.ARTIFACT_UPLOAD_ID }}" >> "$GITHUB_OUTPUT" + + - name: Archive generated report references documents + if: steps.set-generated_documents_changed.outputs.generated_documents_changed == 'true' + uses: actions/upload-artifact@v4 + with: + name: ${{ steps.set-documentation-upload-name.outputs.documentation-upload-name }} + path: ./analysis-results/*.md + if-no-files-found: error + retention-days: 5 + + + commit-analysis-results: + name: Commit Analysis Results + needs: [generate-report-reference-documentation] + uses: ./.github/workflows/internal-commit-results.yml + if: needs.generate-report-reference-documentation.outputs.generated_documents_changed == 'true' + with: + commit-author-name: "${{ github.event.repository.name }} Continuous Integration" + commit-author-email: "7671054+JohT@users.noreply.github.com" + commit-message: "Automated code structure analysis results (CI)" + commit-directory: "./analysis-results/*.md" + uploaded-artifact-name: ${{ needs.generate-report-reference-documentation.outputs.documentation-upload-name }} + secrets: + repository-commit-token: ${{ secrets.WORKFLOW_GIT_ACCESS_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/java-code-analysis.yml b/.github/workflows/java-code-analysis.yml index 9f7b76b0..be63a6ef 100644 --- a/.github/workflows/java-code-analysis.yml +++ b/.github/workflows/java-code-analysis.yml @@ -7,6 +7,7 @@ on: # Ignore changes in documentation, general configuration and analysis-results for push events paths-ignore: - 'analysis-results/**' + - 'documentation/**' - '**/*.md' - '**/*.txt' - '**/*.css' @@ -24,6 +25,7 @@ on: # Ignore changes in documentation, general configuration and analysis-results for pull request events paths-ignore: - 'analysis-results/**' + - 'documentation/**' - '**/*.md' - '**/*.txt' - '**/*.css' diff --git a/.github/workflows/typescript-code-analysis.yml b/.github/workflows/typescript-code-analysis.yml index 3fac681d..a797029b 100644 --- a/.github/workflows/typescript-code-analysis.yml +++ b/.github/workflows/typescript-code-analysis.yml @@ -7,6 +7,7 @@ on: # Ignore changes in documentation, general configuration and analysis-results for push events paths-ignore: - 'analysis-results/**' + - 'documentation/**' - '**/*.md' - '**/*.txt' - '**/*.css' @@ -24,6 +25,7 @@ on: # Ignore changes in documentation, general configuration and analysis-results for pull request events paths-ignore: - 'analysis-results/**' + - 'documentation/**' - '**/*.md' - '**/*.txt' - '**/*.css' diff --git a/COMMANDS.md b/COMMANDS.md new file mode 100644 index 00000000..14f35e4e --- /dev/null +++ b/COMMANDS.md @@ -0,0 +1,42 @@ +# Code Graph Analysis Pipeline - Commands + + + +- [Generate Markdown References](#generate-markdown-references) + - [Generate CSV Cypher Query Results Report Reference](#generate-csv-cypher-query-results-report-reference) + - [Generate Jupyter Notebook Report Reference](#generate-jupyter-notebook-report-reference) + - [Generate Image Reference](#generate-image-reference) + + + +## Generate Markdown References + +### Generate CSV Cypher Query Results Report Reference + +Change into the [analysis-results](./analysis-results/) directory e.g. with `cd analysis-results` and then execute the script [generateCsvReportReference.sh](./documentation/analysis-reports-reference/generateCsvReportReference.sh) with the following command: + +👉**Note:** This script is automatically triggered in the pipeline [internal-report-reference-documentation.yml](.github/workflows/internal-report-reference-documentation.yml) and doesn't need to be executed manually normally. + +```script +./../documentation/analysis-reports-reference/generateCsvReportReference.sh +``` + +### Generate Jupyter Notebook Report Reference + +Change into the [analysis-results](./analysis-results/) directory e.g. with `cd analysis-results` and then execute the script [generateJupyterReportReference.sh](./documentation/analysis-reports-reference/generateJupyterReportReference.sh) with the following command: + +👉**Note:** This script is automatically triggered in the pipeline [internal-report-reference-documentation.yml](.github/workflows/internal-report-reference-documentation.yml) and doesn't need to be executed manually normally. + +```script +./../documentation/analysis-reports-reference/generateJupyterReportReference.sh +``` + +### Generate Image Reference + +Change into the [analysis-results](./analysis-results/) directory e.g. with `cd analysis-results` and then execute the script [generateImageReference.sh](./documentation/analysis-reports-reference/generateImageReference.sh) with the following command: + +👉**Note:** This script is automatically triggered in the pipeline [internal-report-reference-documentation.yml](.github/workflows/internal-report-reference-documentation.yml) and doesn't need to be executed manually normally. + +```script +./../documentation/analysis-reports-reference/generateImageReference.sh +``` diff --git a/README.md b/README.md index 9ab7a318..544f18fa 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,18 @@ Here are ten examples from over a hundred reports generated by the analysis. The Word cloud of git authors +## :page_with_curl: CSV Cypher Query Report Reference + +[CSV_REPORTS.md](./analysis-results/CSV_REPORTS.md) lists all CSV Cypher query result reports inside the [results](./results) directory. It can be generated as described in [Generate CSV Report Reference](./COMMANDS.md#generate-csv-cypher-query-report-reference). + +## :page_with_curl: Jupyter Notebook Report Reference + +[JUPYTER_REPORTS.md](./analysis-results/JUPYTER_REPORTS.md) lists all Jupyter Notebook reports inside the [results](./results) directory. It can be generated as described in [Generate Jupyter Notebook Report Reference](./COMMANDS.md#generate-jupyter-notebook-report-reference). + +## :camera: Image Reference + +[IMAGES.md](./analysis-results/IMAGES.md) lists all PNG images inside the [results](./results) directory. It can be generated as described in [Generate Image Reference](./COMMANDS.md#generate-image-reference). + ## Keeping the Analysis Workflow Updated with Renovate This repository uses [Renovate](https://docs.renovatebot.com) to automatically update the analysis workflow to the latest version. To enable this, add the following extension to your Renovate configuration: diff --git a/analysis-results/CSV_REPORTS.md b/analysis-results/CSV_REPORTS.md new file mode 100644 index 00000000..fa0ee4f9 --- /dev/null +++ b/analysis-results/CSV_REPORTS.md @@ -0,0 +1,1110 @@ +# CSV Cypher Query Result Reports Reference + +This document lists all CSV Cypher query result reports found in the current directory and its subdirectories. +Each entry in the table below includes the file name, the analysis type, the number of rows in the CSV, and the source Cypher query. +This file was automatically generated using the [generateCsvReportReference](./../documentation/analysis-reports-reference/generateCsvReportReference.sh) script. + +| CSV File | Analysis | Number of Rows | Source Query | +| -------- | -------- | -------------- | ------------ | +| [DependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.10.2/artifact-dependencies-csv/DependenciesAcrossArtifacts.csv) | AxonFramework-4.10.2 | 24 | [Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher) | +| [InternalArtifactUsageSpreadPerDependency.csv](./AxonFramework/AxonFramework-4.10.2/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependency.csv) | AxonFramework-4.10.2 | 10 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher) | +| [InternalArtifactUsageSpreadPerDependent.csv](./AxonFramework/AxonFramework-4.10.2/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependent.csv) | AxonFramework-4.10.2 | 11 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher) | +| [MostUsedDependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.10.2/artifact-dependencies-csv/MostUsedDependenciesAcrossArtifacts.csv) | AxonFramework-4.10.2 | 9 | [Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher](./../cypher/Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher) | +| [Artifact_Centrality_All.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Artifact_Centrality_All.csv) | AxonFramework-4.10.2 | 10 | [Centrality/Centrality_90_Summary.cypher](./../cypher/Centrality/Centrality_90_Summary.cypher) | +| [Artifact_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Artifact_Centrality_Article_Rank.csv) | AxonFramework-4.10.2 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Artifact_Centrality_Betweeness.csv) | AxonFramework-4.10.2 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.10.2 | 10 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Artifact_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Artifact_Centrality_Page_Rank.csv) | AxonFramework-4.10.2 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Artifact_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.10.2 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Artifact_Harmonic_Closeness.csv) | AxonFramework-4.10.2 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Method_Centrality_Article_Rank.csv) | AxonFramework-4.10.2 | 1402 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Method_Centrality_Betweeness.csv) | AxonFramework-4.10.2 | 1402 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.10.2 | 1402 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Method_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Method_Centrality_Page_Rank.csv) | AxonFramework-4.10.2 | 1402 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Method_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.10.2 | 1402 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Method_Harmonic_Closeness.csv) | AxonFramework-4.10.2 | 1402 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_All.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Package_Centrality_All.csv) | AxonFramework-4.10.2 | 115 | [Centrality/Centrality_90_Summary.cypher](./../cypher/Centrality/Centrality_90_Summary.cypher) | +| [Package_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Package_Centrality_Article_Rank.csv) | AxonFramework-4.10.2 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Package_Centrality_Betweeness.csv) | AxonFramework-4.10.2 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Bridges.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Package_Centrality_Bridges.csv) | AxonFramework-4.10.2 | 4 | [Centrality/Centrality_10d_Bridges_Stream.cypher](./../cypher/Centrality/Centrality_10d_Bridges_Stream.cypher) | +| [Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.10.2 | 115 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Package_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Package_Centrality_Page_Rank.csv) | AxonFramework-4.10.2 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Package_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.10.2 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Package_Harmonic_Closeness.csv) | AxonFramework-4.10.2 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_All.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Type_Centrality_All.csv) | AxonFramework-4.10.2 | 1420 | [Centrality/Centrality_90_Summary.cypher](./../cypher/Centrality/Centrality_90_Summary.cypher) | +| [Type_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Type_Centrality_Article_Rank.csv) | AxonFramework-4.10.2 | 1420 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Type_Centrality_Betweeness.csv) | AxonFramework-4.10.2 | 1420 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.10.2 | 1420 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Type_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Type_Centrality_Page_Rank.csv) | AxonFramework-4.10.2 | 1420 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Type_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.10.2 | 1420 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.10.2/centrality-csv/Type_Harmonic_Closeness.csv) | AxonFramework-4.10.2 | 1420 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_All_Communities.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_All_Communities.csv) | AxonFramework-4.10.2 | 10 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Artifact_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.10.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_Communities_K_Core_Decomposition.csv) | AxonFramework-4.10.2 | 4 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_Communities_Label_Propagation.csv) | AxonFramework-4.10.2 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Local_Clustering_Coefficient_Aggregated.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_Communities_Local_Clustering_Coefficient_Aggregated.csv) | AxonFramework-4.10.2 | 6 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Artifact_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_Communities_Louvain.csv) | AxonFramework-4.10.2 | 2 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Artifact_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.10.2 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.10.2 | 4 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.10.2 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.10.2 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.10.2 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.10.2 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.10.2 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_All_Communities.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_All_Communities.csv) | AxonFramework-4.10.2 | 115 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Package_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.10.2 | 21 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_Communities_K_Core_Decomposition.csv) | AxonFramework-4.10.2 | 12 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_Communities_Label_Propagation.csv) | AxonFramework-4.10.2 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.10.2 | 18 | [Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher](./../cypher/Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher) | +| [Package_Communities_Local_Clustering_Coefficient_Aggregated.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_Communities_Local_Clustering_Coefficient_Aggregated.csv) | AxonFramework-4.10.2 | 56 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Package_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_Communities_Louvain.csv) | AxonFramework-4.10.2 | 19 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Package_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.10.2 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.10.2 | 12 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.10.2 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.10.2 | 8 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.10.2 | 7 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.10.2 | 21 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.2/community-csv/Package_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.10.2 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_package_usage_overall.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_overall.csv) | AxonFramework-4.10.2 | 65 | [External_Dependencies/External_package_usage_overall.cypher](./../cypher/External_Dependencies/External_package_usage_overall.cypher) | +| [External_package_usage_per_artifact.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_per_artifact.csv) | AxonFramework-4.10.2 | 151 | [External_Dependencies/External_package_usage_per_artifact.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact.cypher) | +| [External_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.10.2 | 151 | [External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher) | +| [External_package_usage_per_artifact_and_package.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_per_artifact_and_package.csv) | AxonFramework-4.10.2 | 256 | [External_Dependencies/External_package_usage_per_artifact_and_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_package.cypher) | +| [External_package_usage_per_artifact_distribution.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_per_artifact_distribution.csv) | AxonFramework-4.10.2 | 10 | [External_Dependencies/External_package_usage_per_artifact_distribution.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_distribution.cypher) | +| [External_package_usage_per_artifact_package_aggregated.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_per_artifact_package_aggregated.csv) | AxonFramework-4.10.2 | 10 | [External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher) | +| [External_package_usage_per_artifact_sorted_top.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_per_artifact_sorted_top.csv) | AxonFramework-4.10.2 | 10 | [External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher) | +| [External_package_usage_per_type.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_per_type.csv) | AxonFramework-4.10.2 | 642 | [External_Dependencies/External_package_usage_per_type.cypher](./../cypher/External_Dependencies/External_package_usage_per_type.cypher) | +| [External_package_usage_spread.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_package_usage_spread.csv) | AxonFramework-4.10.2 | 114 | [External_Dependencies/External_package_usage_spread.cypher](./../cypher/External_Dependencies/External_package_usage_spread.cypher) | +| [External_second_level_package_usage_overall.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_second_level_package_usage_overall.csv) | AxonFramework-4.10.2 | 29 | [External_Dependencies/External_second_level_package_usage_overall.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_overall.cypher) | +| [External_second_level_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_second_level_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.10.2 | 66 | [External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher) | +| [External_second_level_package_usage_spread.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/External_second_level_package_usage_spread.csv) | AxonFramework-4.10.2 | 33 | [External_Dependencies/External_second_level_package_usage_spread.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_spread.cypher) | +| [Maven_POM_dependencies.csv](./AxonFramework/AxonFramework-4.10.2/external-dependencies-csv/Maven_POM_dependencies.csv) | AxonFramework-4.10.2 | 164 | [External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher](./../cypher/External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher) | +| [ArtifactPackageUsage.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/ArtifactPackageUsage.csv) | AxonFramework-4.10.2 | 32 | [Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher) | +| [ClassesPerPackageUsageAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/ClassesPerPackageUsageAcrossArtifacts.csv) | AxonFramework-4.10.2 | 363 | [Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher) | +| [Cyclic_Dependencies.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/Cyclic_Dependencies.csv) | AxonFramework-4.10.2 | 29 | [Cyclic_Dependencies/Cyclic_Dependencies.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies.cypher) | +| [Cyclic_Dependencies_Breakdown.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/Cyclic_Dependencies_Breakdown.csv) | AxonFramework-4.10.2 | 468 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher) | +| [Cyclic_Dependencies_Breakdown_Backward_Only.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/Cyclic_Dependencies_Breakdown_Backward_Only.csv) | AxonFramework-4.10.2 | 105 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher) | +| [Distance_distribution_between_dependent_files.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/Distance_distribution_between_dependent_files.csv) | AxonFramework-4.10.2 | 4 | [Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher](./../cypher/Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher) | +| [InterfaceSegregationCandidates.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/InterfaceSegregationCandidates.csv) | AxonFramework-4.10.2 | 287 | [Internal_Dependencies/Candidates_for_Interface_Segregation.cypher](./../cypher/Internal_Dependencies/Candidates_for_Interface_Segregation.cypher) | +| [List_all_Java_artifacts.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/List_all_Java_artifacts.csv) | AxonFramework-4.10.2 | 10 | [Internal_Dependencies/List_all_Java_artifacts.cypher](./../cypher/Internal_Dependencies/List_all_Java_artifacts.cypher) | +| [WidelyUsedTypes.csv](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-csv/WidelyUsedTypes.csv) | AxonFramework-4.10.2 | 689 | [Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher](./../cypher/Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher) | +| [AnnotatedCodeElements.csv](./AxonFramework/AxonFramework-4.10.2/java-csv/AnnotatedCodeElements.csv) | AxonFramework-4.10.2 | 92 | [Java/Annotated_code_elements.cypher](./../cypher/Java/Annotated_code_elements.cypher) | +| [AnnotatedCodeElementsPerArtifact.csv](./AxonFramework/AxonFramework-4.10.2/java-csv/AnnotatedCodeElementsPerArtifact.csv) | AxonFramework-4.10.2 | 179 | [Java/Annotated_code_elements_per_artifact.cypher](./../cypher/Java/Annotated_code_elements_per_artifact.cypher) | +| [DeprecatedElementUsage.csv](./AxonFramework/AxonFramework-4.10.2/java-csv/DeprecatedElementUsage.csv) | AxonFramework-4.10.2 | 15 | [Java/Java_deprecated_element_usage.cypher](./../cypher/Java/Java_deprecated_element_usage.cypher) | +| [DeprecatedElementUsageDetailed.csv](./AxonFramework/AxonFramework-4.10.2/java-csv/DeprecatedElementUsageDetailed.csv) | AxonFramework-4.10.2 | 67 | [Java/Java_deprecated_element_usage_detailed.cypher](./../cypher/Java/Java_deprecated_element_usage_detailed.cypher) | +| [ReflectionUsage.csv](./AxonFramework/AxonFramework-4.10.2/java-csv/ReflectionUsage.csv) | AxonFramework-4.10.2 | 10 | [Java/Java_Reflection_usage.cypher](./../cypher/Java/Java_Reflection_usage.cypher) | +| [ReflectionUsageDetailed.csv](./AxonFramework/AxonFramework-4.10.2/java-csv/ReflectionUsageDetailed.csv) | AxonFramework-4.10.2 | 106 | [Java/Java_Reflection_usage_detailed.cypher](./../cypher/Java/Java_Reflection_usage_detailed.cypher) | +| [Artifact_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.10.2/node-embeddings-csv/Artifact_Embeddings_HashGNN.csv) | AxonFramework-4.10.2 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.10.2/node-embeddings-csv/Artifact_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.10.2 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.10.2/node-embeddings-csv/Artifact_Embeddings_Node2Vec.csv) | AxonFramework-4.10.2 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.10.2/node-embeddings-csv/Package_Embeddings_HashGNN.csv) | AxonFramework-4.10.2 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.10.2/node-embeddings-csv/Package_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.10.2 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.10.2/node-embeddings-csv/Package_Embeddings_Node2Vec.csv) | AxonFramework-4.10.2 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/AbstractnessIncludingSubpackagesJava.csv) | AxonFramework-4.10.2 | 118 | [Metrics/Calculate_and_set_Abstractness_for_Java_including_Subpackages.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Java_including_Subpackages.cypher) | +| [AbstractnessJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/AbstractnessJava.csv) | AxonFramework-4.10.2 | 140 | [Metrics/Calculate_and_set_Abstractness_for_Java.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Java.cypher) | +| [IncomingPackageDependenciesIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/IncomingPackageDependenciesIncludingSubpackagesJava.csv) | AxonFramework-4.10.2 | 117 | [Metrics/Set_Incoming_Java_Package_Dependencies_Including_Subpackages.cypher](./../cypher/Metrics/Set_Incoming_Java_Package_Dependencies_Including_Subpackages.cypher) | +| [IncomingPackageDependenciesJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/IncomingPackageDependenciesJava.csv) | AxonFramework-4.10.2 | 139 | [Metrics/Get_Incoming_Java_Package_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Java_Package_Dependencies.cypher) | +| [InstabilityIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/InstabilityIncludingSubpackagesJava.csv) | AxonFramework-4.10.2 | 98 | [Metrics/Calculate_and_set_Instability_for_Java_Including_Subpackages.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Java_Including_Subpackages.cypher) | +| [InstabilityJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/InstabilityJava.csv) | AxonFramework-4.10.2 | 110 | [Metrics/Calculate_and_set_Instability_for_Java.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Java.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceIncludingSubpackagesJava.csv) | AxonFramework-4.10.2 | 98 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Java_including_subpackages.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Java_including_subpackages.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceJava.csv) | AxonFramework-4.10.2 | 140 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Java.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Java.cypher) | +| [OutgoingPackageDependenciesIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/OutgoingPackageDependenciesIncludingSubpackagesJava.csv) | AxonFramework-4.10.2 | 117 | [Metrics/Set_Outgoing_Java_Package_Dependencies_Including_Subpackages.cypher](./../cypher/Metrics/Set_Outgoing_Java_Package_Dependencies_Including_Subpackages.cypher) | +| [OutgoingPackageDependenciesJava.csv](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-csv/OutgoingPackageDependenciesJava.csv) | AxonFramework-4.10.2 | 139 | [Metrics/Get_Outgoing_Java_Package_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Java_Package_Dependencies.cypher) | +| [Cyclomatic_Method_Complexity.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Cyclomatic_Method_Complexity.csv) | AxonFramework-4.10.2 | 89 | [Overview/Cyclomatic_Method_Complexity_Distribution.cypher](./../cypher/Overview/Cyclomatic_Method_Complexity_Distribution.cypher) | +| [Effective_Method_Line_Count.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Effective_Method_Line_Count.csv) | AxonFramework-4.10.2 | 204 | [Overview/Effective_Method_Line_Count_Distribution.cypher](./../cypher/Overview/Effective_Method_Line_Count_Distribution.cypher) | +| [Effective_lines_of_method_code_per_package.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Effective_lines_of_method_code_per_package.csv) | AxonFramework-4.10.2 | 115 | [Overview/Effective_lines_of_method_code_per_package.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_package.cypher) | +| [Effective_lines_of_method_code_per_type.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Effective_lines_of_method_code_per_type.csv) | AxonFramework-4.10.2 | 1181 | [Overview/Effective_lines_of_method_code_per_type.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_type.cypher) | +| [Node_label_combination_count.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Node_label_combination_count.csv) | AxonFramework-4.10.2 | 67 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Node_label_count.csv) | AxonFramework-4.10.2 | 74 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_packages_per_artifact.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Number_of_packages_per_artifact.csv) | AxonFramework-4.10.2 | 10 | [Overview/Number_of_packages_per_artifact.cypher](./../cypher/Overview/Number_of_packages_per_artifact.cypher) | +| [Number_of_types_per_artifact.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Number_of_types_per_artifact.csv) | AxonFramework-4.10.2 | 28 | [Overview/Number_of_types_per_artifact.cypher](./../cypher/Overview/Number_of_types_per_artifact.cypher) | +| [Overview_size.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Overview_size.csv) | AxonFramework-4.10.2 | 2 | [Overview/Overview_size.cypher](./../cypher/Overview/Overview_size.cypher) | +| [Relationship_type_count.csv](./AxonFramework/AxonFramework-4.10.2/overview-csv/Relationship_type_count.csv) | AxonFramework-4.10.2 | 73 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [Artifact_all_pairs_shortest_paths_distribution_per_project.csv](./AxonFramework/AxonFramework-4.10.2/path-finding-csv/Artifact_all_pairs_shortest_paths_distribution_per_project.csv) | AxonFramework-4.10.2 | 3 | [Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher) | +| [Artifact_longest_paths_distribution.csv](./AxonFramework/AxonFramework-4.10.2/path-finding-csv/Artifact_longest_paths_distribution.csv) | AxonFramework-4.10.2 | 7 | [Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher) | +| [Package_all_pairs_shortest_paths_distribution_per_project.csv](./AxonFramework/AxonFramework-4.10.2/path-finding-csv/Package_all_pairs_shortest_paths_distribution_per_project.csv) | AxonFramework-4.10.2 | 49 | [Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher) | +| [Package_longest_paths_distribution.csv](./AxonFramework/AxonFramework-4.10.2/path-finding-csv/Package_longest_paths_distribution.csv) | AxonFramework-4.10.2 | 18 | [Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher) | +| [Artifact_Similarity.csv](./AxonFramework/AxonFramework-4.10.2/similarity-csv/Artifact_Similarity.csv) | AxonFramework-4.10.2 | 25 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Package_Similarity.csv](./AxonFramework/AxonFramework-4.10.2/similarity-csv/Package_Similarity.csv) | AxonFramework-4.10.2 | 319 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Type_Similarity.csv](./AxonFramework/AxonFramework-4.10.2/similarity-csv/Type_Similarity.csv) | AxonFramework-4.10.2 | 3627 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Artifact_Topological_Sort.csv](./AxonFramework/AxonFramework-4.10.2/topology-csv/Artifact_Topological_Sort.csv) | AxonFramework-4.10.2 | 10 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Package_Topological_Sort.csv](./AxonFramework/AxonFramework-4.10.2/topology-csv/Package_Topological_Sort.csv) | AxonFramework-4.10.2 | 46 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Type_Topological_Sort.csv](./AxonFramework/AxonFramework-4.10.2/topology-csv/Type_Topological_Sort.csv) | AxonFramework-4.10.2 | 229 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerArtifact.csv](./AxonFramework/AxonFramework-4.10.2/visibility-metrics-csv/RelativeVisibilityPerArtifact.csv) | AxonFramework-4.10.2 | 10 | [Visibility/Global_relative_visibility_statistics_for_types.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_types.cypher) | +| [RelativeVisibilityPerPackage.csv](./AxonFramework/AxonFramework-4.10.2/visibility-metrics-csv/RelativeVisibilityPerPackage.csv) | AxonFramework-4.10.2 | 115 | [Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher](./../cypher/Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher) | +| [DependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.10.3/artifact-dependencies-csv/DependenciesAcrossArtifacts.csv) | AxonFramework-4.10.3 | 24 | [Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher) | +| [InternalArtifactUsageSpreadPerDependency.csv](./AxonFramework/AxonFramework-4.10.3/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependency.csv) | AxonFramework-4.10.3 | 10 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher) | +| [InternalArtifactUsageSpreadPerDependent.csv](./AxonFramework/AxonFramework-4.10.3/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependent.csv) | AxonFramework-4.10.3 | 11 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher) | +| [MostUsedDependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.10.3/artifact-dependencies-csv/MostUsedDependenciesAcrossArtifacts.csv) | AxonFramework-4.10.3 | 9 | [Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher](./../cypher/Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher) | +| [Artifact_Centrality_All.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Artifact_Centrality_All.csv) | AxonFramework-4.10.3 | 10 | [Centrality/Centrality_90_Summary.cypher](./../cypher/Centrality/Centrality_90_Summary.cypher) | +| [Artifact_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Artifact_Centrality_Article_Rank.csv) | AxonFramework-4.10.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Artifact_Centrality_Betweeness.csv) | AxonFramework-4.10.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.10.3 | 10 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Artifact_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Artifact_Centrality_Page_Rank.csv) | AxonFramework-4.10.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Artifact_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.10.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Artifact_Harmonic_Closeness.csv) | AxonFramework-4.10.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Method_Centrality_Article_Rank.csv) | AxonFramework-4.10.3 | 1397 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Method_Centrality_Betweeness.csv) | AxonFramework-4.10.3 | 1397 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.10.3 | 1397 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Method_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Method_Centrality_Page_Rank.csv) | AxonFramework-4.10.3 | 1397 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Method_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.10.3 | 1397 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Method_Harmonic_Closeness.csv) | AxonFramework-4.10.3 | 1397 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_All.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Package_Centrality_All.csv) | AxonFramework-4.10.3 | 115 | [Centrality/Centrality_90_Summary.cypher](./../cypher/Centrality/Centrality_90_Summary.cypher) | +| [Package_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Package_Centrality_Article_Rank.csv) | AxonFramework-4.10.3 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Package_Centrality_Betweeness.csv) | AxonFramework-4.10.3 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Bridges.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Package_Centrality_Bridges.csv) | AxonFramework-4.10.3 | 4 | [Centrality/Centrality_10d_Bridges_Stream.cypher](./../cypher/Centrality/Centrality_10d_Bridges_Stream.cypher) | +| [Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.10.3 | 115 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Package_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Package_Centrality_Page_Rank.csv) | AxonFramework-4.10.3 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Package_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.10.3 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Package_Harmonic_Closeness.csv) | AxonFramework-4.10.3 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_All.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Type_Centrality_All.csv) | AxonFramework-4.10.3 | 1424 | [Centrality/Centrality_90_Summary.cypher](./../cypher/Centrality/Centrality_90_Summary.cypher) | +| [Type_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Type_Centrality_Article_Rank.csv) | AxonFramework-4.10.3 | 1424 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Type_Centrality_Betweeness.csv) | AxonFramework-4.10.3 | 1424 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.10.3 | 1424 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Type_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Type_Centrality_Page_Rank.csv) | AxonFramework-4.10.3 | 1424 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Type_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.10.3 | 1424 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.10.3/centrality-csv/Type_Harmonic_Closeness.csv) | AxonFramework-4.10.3 | 1424 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_All_Communities.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_All_Communities.csv) | AxonFramework-4.10.3 | 10 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Artifact_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.10.3 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_Communities_K_Core_Decomposition.csv) | AxonFramework-4.10.3 | 4 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_Communities_Label_Propagation.csv) | AxonFramework-4.10.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Local_Clustering_Coefficient_Aggregated.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_Communities_Local_Clustering_Coefficient_Aggregated.csv) | AxonFramework-4.10.3 | 6 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Artifact_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_Communities_Louvain.csv) | AxonFramework-4.10.3 | 2 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Artifact_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.10.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.10.3 | 4 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.10.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.10.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.10.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.10.3 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.10.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_All_Communities.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_All_Communities.csv) | AxonFramework-4.10.3 | 115 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Package_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.10.3 | 21 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_Communities_K_Core_Decomposition.csv) | AxonFramework-4.10.3 | 12 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_Communities_Label_Propagation.csv) | AxonFramework-4.10.3 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.10.3 | 19 | [Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher](./../cypher/Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher) | +| [Package_Communities_Local_Clustering_Coefficient_Aggregated.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_Communities_Local_Clustering_Coefficient_Aggregated.csv) | AxonFramework-4.10.3 | 56 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Package_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_Communities_Louvain.csv) | AxonFramework-4.10.3 | 18 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Package_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.10.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.10.3 | 12 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.10.3 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.10.3 | 9 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.10.3 | 8 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.10.3 | 21 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.10.3/community-csv/Package_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.10.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_package_usage_overall.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_overall.csv) | AxonFramework-4.10.3 | 65 | [External_Dependencies/External_package_usage_overall.cypher](./../cypher/External_Dependencies/External_package_usage_overall.cypher) | +| [External_package_usage_per_artifact.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_per_artifact.csv) | AxonFramework-4.10.3 | 151 | [External_Dependencies/External_package_usage_per_artifact.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact.cypher) | +| [External_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.10.3 | 151 | [External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher) | +| [External_package_usage_per_artifact_and_package.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_per_artifact_and_package.csv) | AxonFramework-4.10.3 | 256 | [External_Dependencies/External_package_usage_per_artifact_and_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_package.cypher) | +| [External_package_usage_per_artifact_distribution.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_per_artifact_distribution.csv) | AxonFramework-4.10.3 | 10 | [External_Dependencies/External_package_usage_per_artifact_distribution.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_distribution.cypher) | +| [External_package_usage_per_artifact_package_aggregated.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_per_artifact_package_aggregated.csv) | AxonFramework-4.10.3 | 10 | [External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher) | +| [External_package_usage_per_artifact_sorted_top.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_per_artifact_sorted_top.csv) | AxonFramework-4.10.3 | 10 | [External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher) | +| [External_package_usage_per_type.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_per_type.csv) | AxonFramework-4.10.3 | 644 | [External_Dependencies/External_package_usage_per_type.cypher](./../cypher/External_Dependencies/External_package_usage_per_type.cypher) | +| [External_package_usage_spread.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_package_usage_spread.csv) | AxonFramework-4.10.3 | 114 | [External_Dependencies/External_package_usage_spread.cypher](./../cypher/External_Dependencies/External_package_usage_spread.cypher) | +| [External_second_level_package_usage_overall.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_second_level_package_usage_overall.csv) | AxonFramework-4.10.3 | 29 | [External_Dependencies/External_second_level_package_usage_overall.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_overall.cypher) | +| [External_second_level_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_second_level_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.10.3 | 66 | [External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher) | +| [External_second_level_package_usage_spread.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/External_second_level_package_usage_spread.csv) | AxonFramework-4.10.3 | 33 | [External_Dependencies/External_second_level_package_usage_spread.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_spread.cypher) | +| [Maven_POM_dependencies.csv](./AxonFramework/AxonFramework-4.10.3/external-dependencies-csv/Maven_POM_dependencies.csv) | AxonFramework-4.10.3 | 164 | [External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher](./../cypher/External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher) | +| [ArtifactPackageUsage.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/ArtifactPackageUsage.csv) | AxonFramework-4.10.3 | 32 | [Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher) | +| [ClassesPerPackageUsageAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/ClassesPerPackageUsageAcrossArtifacts.csv) | AxonFramework-4.10.3 | 363 | [Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher) | +| [Cyclic_Dependencies.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/Cyclic_Dependencies.csv) | AxonFramework-4.10.3 | 29 | [Cyclic_Dependencies/Cyclic_Dependencies.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies.cypher) | +| [Cyclic_Dependencies_Breakdown.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/Cyclic_Dependencies_Breakdown.csv) | AxonFramework-4.10.3 | 468 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher) | +| [Cyclic_Dependencies_Breakdown_Backward_Only.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/Cyclic_Dependencies_Breakdown_Backward_Only.csv) | AxonFramework-4.10.3 | 105 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher) | +| [Distance_distribution_between_dependent_files.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/Distance_distribution_between_dependent_files.csv) | AxonFramework-4.10.3 | 4 | [Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher](./../cypher/Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher) | +| [InterfaceSegregationCandidates.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/InterfaceSegregationCandidates.csv) | AxonFramework-4.10.3 | 278 | [Internal_Dependencies/Candidates_for_Interface_Segregation.cypher](./../cypher/Internal_Dependencies/Candidates_for_Interface_Segregation.cypher) | +| [List_all_Java_artifacts.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/List_all_Java_artifacts.csv) | AxonFramework-4.10.3 | 10 | [Internal_Dependencies/List_all_Java_artifacts.cypher](./../cypher/Internal_Dependencies/List_all_Java_artifacts.cypher) | +| [WidelyUsedTypes.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-csv/WidelyUsedTypes.csv) | AxonFramework-4.10.3 | 688 | [Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher](./../cypher/Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher) | +| [JavaArtifactBuildLevels.csv](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-visualization/JavaArtifactBuildLevels.csv) | AxonFramework-4.10.3 | 26 | [Internal_Dependencies/Java_Artifact_build_levels_for_graphviz.cypher](./../cypher/Internal_Dependencies/Java_Artifact_build_levels_for_graphviz.cypher) | +| [AnnotatedCodeElements.csv](./AxonFramework/AxonFramework-4.10.3/java-csv/AnnotatedCodeElements.csv) | AxonFramework-4.10.3 | 92 | [Java/Annotated_code_elements.cypher](./../cypher/Java/Annotated_code_elements.cypher) | +| [AnnotatedCodeElementsPerArtifact.csv](./AxonFramework/AxonFramework-4.10.3/java-csv/AnnotatedCodeElementsPerArtifact.csv) | AxonFramework-4.10.3 | 179 | [Java/Annotated_code_elements_per_artifact.cypher](./../cypher/Java/Annotated_code_elements_per_artifact.cypher) | +| [DeprecatedElementUsage.csv](./AxonFramework/AxonFramework-4.10.3/java-csv/DeprecatedElementUsage.csv) | AxonFramework-4.10.3 | 15 | [Java/Java_deprecated_element_usage.cypher](./../cypher/Java/Java_deprecated_element_usage.cypher) | +| [DeprecatedElementUsageDetailed.csv](./AxonFramework/AxonFramework-4.10.3/java-csv/DeprecatedElementUsageDetailed.csv) | AxonFramework-4.10.3 | 67 | [Java/Java_deprecated_element_usage_detailed.cypher](./../cypher/Java/Java_deprecated_element_usage_detailed.cypher) | +| [ReflectionUsage.csv](./AxonFramework/AxonFramework-4.10.3/java-csv/ReflectionUsage.csv) | AxonFramework-4.10.3 | 10 | [Java/Java_Reflection_usage.cypher](./../cypher/Java/Java_Reflection_usage.cypher) | +| [ReflectionUsageDetailed.csv](./AxonFramework/AxonFramework-4.10.3/java-csv/ReflectionUsageDetailed.csv) | AxonFramework-4.10.3 | 106 | [Java/Java_Reflection_usage_detailed.cypher](./../cypher/Java/Java_Reflection_usage_detailed.cypher) | +| [Artifact_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.10.3/node-embeddings-csv/Artifact_Embeddings_HashGNN.csv) | AxonFramework-4.10.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.10.3/node-embeddings-csv/Artifact_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.10.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.10.3/node-embeddings-csv/Artifact_Embeddings_Node2Vec.csv) | AxonFramework-4.10.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.10.3/node-embeddings-csv/Package_Embeddings_HashGNN.csv) | AxonFramework-4.10.3 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.10.3/node-embeddings-csv/Package_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.10.3 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.10.3/node-embeddings-csv/Package_Embeddings_Node2Vec.csv) | AxonFramework-4.10.3 | 115 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/AbstractnessIncludingSubpackagesJava.csv) | AxonFramework-4.10.3 | 118 | [Metrics/Calculate_and_set_Abstractness_for_Java_including_Subpackages.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Java_including_Subpackages.cypher) | +| [AbstractnessJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/AbstractnessJava.csv) | AxonFramework-4.10.3 | 140 | [Metrics/Calculate_and_set_Abstractness_for_Java.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Java.cypher) | +| [IncomingPackageDependenciesIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/IncomingPackageDependenciesIncludingSubpackagesJava.csv) | AxonFramework-4.10.3 | 117 | [Metrics/Set_Incoming_Java_Package_Dependencies_Including_Subpackages.cypher](./../cypher/Metrics/Set_Incoming_Java_Package_Dependencies_Including_Subpackages.cypher) | +| [IncomingPackageDependenciesJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/IncomingPackageDependenciesJava.csv) | AxonFramework-4.10.3 | 139 | [Metrics/Get_Incoming_Java_Package_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Java_Package_Dependencies.cypher) | +| [InstabilityIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/InstabilityIncludingSubpackagesJava.csv) | AxonFramework-4.10.3 | 98 | [Metrics/Calculate_and_set_Instability_for_Java_Including_Subpackages.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Java_Including_Subpackages.cypher) | +| [InstabilityJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/InstabilityJava.csv) | AxonFramework-4.10.3 | 110 | [Metrics/Calculate_and_set_Instability_for_Java.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Java.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceIncludingSubpackagesJava.csv) | AxonFramework-4.10.3 | 98 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Java_including_subpackages.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Java_including_subpackages.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceJava.csv) | AxonFramework-4.10.3 | 140 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Java.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Java.cypher) | +| [OutgoingPackageDependenciesIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/OutgoingPackageDependenciesIncludingSubpackagesJava.csv) | AxonFramework-4.10.3 | 117 | [Metrics/Set_Outgoing_Java_Package_Dependencies_Including_Subpackages.cypher](./../cypher/Metrics/Set_Outgoing_Java_Package_Dependencies_Including_Subpackages.cypher) | +| [OutgoingPackageDependenciesJava.csv](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-csv/OutgoingPackageDependenciesJava.csv) | AxonFramework-4.10.3 | 139 | [Metrics/Get_Outgoing_Java_Package_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Java_Package_Dependencies.cypher) | +| [Cyclomatic_Method_Complexity.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Cyclomatic_Method_Complexity.csv) | AxonFramework-4.10.3 | 89 | [Overview/Cyclomatic_Method_Complexity_Distribution.cypher](./../cypher/Overview/Cyclomatic_Method_Complexity_Distribution.cypher) | +| [Effective_Method_Line_Count.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Effective_Method_Line_Count.csv) | AxonFramework-4.10.3 | 204 | [Overview/Effective_Method_Line_Count_Distribution.cypher](./../cypher/Overview/Effective_Method_Line_Count_Distribution.cypher) | +| [Effective_lines_of_method_code_per_package.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Effective_lines_of_method_code_per_package.csv) | AxonFramework-4.10.3 | 115 | [Overview/Effective_lines_of_method_code_per_package.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_package.cypher) | +| [Effective_lines_of_method_code_per_type.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Effective_lines_of_method_code_per_type.csv) | AxonFramework-4.10.3 | 1183 | [Overview/Effective_lines_of_method_code_per_type.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_type.cypher) | +| [Node_label_combination_count.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Node_label_combination_count.csv) | AxonFramework-4.10.3 | 72 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Node_label_count.csv) | AxonFramework-4.10.3 | 77 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_packages_per_artifact.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Number_of_packages_per_artifact.csv) | AxonFramework-4.10.3 | 10 | [Overview/Number_of_packages_per_artifact.cypher](./../cypher/Overview/Number_of_packages_per_artifact.cypher) | +| [Number_of_types_per_artifact.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Number_of_types_per_artifact.csv) | AxonFramework-4.10.3 | 28 | [Overview/Number_of_types_per_artifact.cypher](./../cypher/Overview/Number_of_types_per_artifact.cypher) | +| [Overview_size.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Overview_size.csv) | AxonFramework-4.10.3 | 2 | [Overview/Overview_size.cypher](./../cypher/Overview/Overview_size.cypher) | +| [Relationship_type_count.csv](./AxonFramework/AxonFramework-4.10.3/overview-csv/Relationship_type_count.csv) | AxonFramework-4.10.3 | 65 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [Artifact_all_pairs_shortest_paths_distribution_per_project.csv](./AxonFramework/AxonFramework-4.10.3/path-finding-csv/Artifact_all_pairs_shortest_paths_distribution_per_project.csv) | AxonFramework-4.10.3 | 3 | [Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher) | +| [Artifact_longest_paths_distribution.csv](./AxonFramework/AxonFramework-4.10.3/path-finding-csv/Artifact_longest_paths_distribution.csv) | AxonFramework-4.10.3 | 7 | [Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher) | +| [Package_all_pairs_shortest_paths_distribution_per_project.csv](./AxonFramework/AxonFramework-4.10.3/path-finding-csv/Package_all_pairs_shortest_paths_distribution_per_project.csv) | AxonFramework-4.10.3 | 49 | [Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher) | +| [Package_longest_paths_distribution.csv](./AxonFramework/AxonFramework-4.10.3/path-finding-csv/Package_longest_paths_distribution.csv) | AxonFramework-4.10.3 | 16 | [Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher) | +| [JavaArtifactLongestPaths.csv](./AxonFramework/AxonFramework-4.10.3/path-finding-visualization/JavaArtifactLongestPaths.csv) | AxonFramework-4.10.3 | 28 | [Path_Finding/Path_Finding_6_Longest_paths_contributors_for_graphviz.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_contributors_for_graphviz.cypher) | +| [JavaArtifactLongestPathsIsolated.csv](./AxonFramework/AxonFramework-4.10.3/path-finding-visualization/JavaArtifactLongestPathsIsolated.csv) | AxonFramework-4.10.3 | 23 | [Path_Finding/Path_Finding_6_Longest_paths_for_graphviz.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_for_graphviz.cypher) | +| [Artifact_Similarity.csv](./AxonFramework/AxonFramework-4.10.3/similarity-csv/Artifact_Similarity.csv) | AxonFramework-4.10.3 | 25 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Package_Similarity.csv](./AxonFramework/AxonFramework-4.10.3/similarity-csv/Package_Similarity.csv) | AxonFramework-4.10.3 | 319 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Type_Similarity.csv](./AxonFramework/AxonFramework-4.10.3/similarity-csv/Type_Similarity.csv) | AxonFramework-4.10.3 | 3636 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Artifact_Topological_Sort.csv](./AxonFramework/AxonFramework-4.10.3/topology-csv/Artifact_Topological_Sort.csv) | AxonFramework-4.10.3 | 10 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Package_Topological_Sort.csv](./AxonFramework/AxonFramework-4.10.3/topology-csv/Package_Topological_Sort.csv) | AxonFramework-4.10.3 | 46 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Type_Topological_Sort.csv](./AxonFramework/AxonFramework-4.10.3/topology-csv/Type_Topological_Sort.csv) | AxonFramework-4.10.3 | 229 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerArtifact.csv](./AxonFramework/AxonFramework-4.10.3/visibility-metrics-csv/RelativeVisibilityPerArtifact.csv) | AxonFramework-4.10.3 | 10 | [Visibility/Global_relative_visibility_statistics_for_types.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_types.cypher) | +| [RelativeVisibilityPerPackage.csv](./AxonFramework/AxonFramework-4.10.3/visibility-metrics-csv/RelativeVisibilityPerPackage.csv) | AxonFramework-4.10.3 | 115 | [Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher](./../cypher/Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher) | +| [DependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.6.8/artifact-dependencies-csv/DependenciesAcrossArtifacts.csv) | AxonFramework-4.6.8 | 10 | [Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher) | +| [DuplicatePackageNamesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.6.8/artifact-dependencies-csv/DuplicatePackageNamesAcrossArtifacts.csv) | AxonFramework-4.6.8 | 1 | [Artifact_Dependencies/Artifacts_with_duplicate_packages.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_duplicate_packages.cypher) | +| [InternalArtifactUsageSpreadPerDependency.csv](./AxonFramework/AxonFramework-4.6.8/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependency.csv) | AxonFramework-4.6.8 | 5 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher) | +| [InternalArtifactUsageSpreadPerDependent.csv](./AxonFramework/AxonFramework-4.6.8/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependent.csv) | AxonFramework-4.6.8 | 7 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher) | +| [MostUsedDependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.6.8/artifact-dependencies-csv/MostUsedDependenciesAcrossArtifacts.csv) | AxonFramework-4.6.8 | 5 | [Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher](./../cypher/Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher) | +| [Artifact_Centrality_All.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Artifact_Centrality_All.csv) | AxonFramework-4.6.8 | 7 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Artifact_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Artifact_Centrality_Article_Rank.csv) | AxonFramework-4.6.8 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Artifact_Centrality_Betweeness.csv) | AxonFramework-4.6.8 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.6.8 | 7 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Artifact_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Artifact_Centrality_Page_Rank.csv) | AxonFramework-4.6.8 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Artifact_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.6.8 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Artifact_Harmonic_Closeness.csv) | AxonFramework-4.6.8 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_All.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Method_Centrality_All.csv) | AxonFramework-4.6.8 | 1 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Method_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Method_Centrality_Article_Rank.csv) | AxonFramework-4.6.8 | 901 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Method_Centrality_Betweeness.csv) | AxonFramework-4.6.8 | 886 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.6.8 | 948 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Method_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Method_Centrality_Page_Rank.csv) | AxonFramework-4.6.8 | 899 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Method_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.6.8 | 856 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Method_Harmonic_Closeness.csv) | AxonFramework-4.6.8 | 887 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_All.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Package_Centrality_All.csv) | AxonFramework-4.6.8 | 81 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Package_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Package_Centrality_Article_Rank.csv) | AxonFramework-4.6.8 | 81 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Package_Centrality_Betweeness.csv) | AxonFramework-4.6.8 | 81 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.6.8 | 81 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Package_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Package_Centrality_Page_Rank.csv) | AxonFramework-4.6.8 | 81 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Package_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.6.8 | 81 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Package_Harmonic_Closeness.csv) | AxonFramework-4.6.8 | 81 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_All.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Type_Centrality_All.csv) | AxonFramework-4.6.8 | 1094 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Type_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Type_Centrality_Article_Rank.csv) | AxonFramework-4.6.8 | 1094 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Type_Centrality_Betweeness.csv) | AxonFramework-4.6.8 | 1094 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.6.8 | 1094 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Type_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Type_Centrality_Page_Rank.csv) | AxonFramework-4.6.8 | 1094 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Type_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.6.8 | 1094 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.6.8/centrality-csv/Type_Harmonic_Closeness.csv) | AxonFramework-4.6.8 | 1094 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_All_Communities.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_All_Communities.csv) | AxonFramework-4.6.8 | 7 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Artifact_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.6.8 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_Communities_K_Core_Decomposition.csv) | AxonFramework-4.6.8 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_Communities_Label_Propagation.csv) | AxonFramework-4.6.8 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_Communities_Louvain.csv) | AxonFramework-4.6.8 | 2 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Artifact_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.6.8 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.6.8 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Artifact_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.6.8 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.6.8 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.6.8 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.6.8 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.6.8 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.6.8 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_All_Communities.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_All_Communities.csv) | AxonFramework-4.6.8 | 81 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Package_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.6.8 | 21 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_Communities_K_Core_Decomposition.csv) | AxonFramework-4.6.8 | 9 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_Communities_Label_Propagation.csv) | AxonFramework-4.6.8 | 12 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.6.8 | 1 | [Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher](./../cypher/Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher) | +| [Package_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_Communities_Louvain.csv) | AxonFramework-4.6.8 | 15 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Package_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.6.8 | 8 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.6.8 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Package_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.6.8 | 9 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.6.8 | 12 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.6.8 | 11 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.6.8 | 12 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.6.8 | 21 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Package_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.6.8 | 8 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_All_Communities.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_All_Communities.csv) | AxonFramework-4.6.8 | 1094 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Type_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.6.8 | 101 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_Communities_K_Core_Decomposition.csv) | AxonFramework-4.6.8 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_Communities_Label_Propagation.csv) | AxonFramework-4.6.8 | 110 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.6.8 | 14 | [Community_Detection/Which_type_community_spans_several_artifacts_and_how_are_the_types_distributed.cypher](./../cypher/Community_Detection/Which_type_community_spans_several_artifacts_and_how_are_the_types_distributed.cypher) | +| [Type_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_Communities_Louvain.csv) | AxonFramework-4.6.8 | 139 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Type_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.6.8 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.6.8 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Type_communities_that_span_the_most_packages_with_type_statistics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_communities_that_span_the_most_packages_with_type_statistics.csv) | AxonFramework-4.6.8 | 47 | [Community_Detection/Type_communities_that_span_the_most_packages_with_type_statistics.cypher](./../cypher/Community_Detection/Type_communities_that_span_the_most_packages_with_type_statistics.cypher) | +| [Type_communities_with_few_members_in_foreign_packages.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_communities_with_few_members_in_foreign_packages.csv) | AxonFramework-4.6.8 | 174 | [Community_Detection/Type_communities_with_few_members_in_foreign_packages.cypher](./../cypher/Community_Detection/Type_communities_with_few_members_in_foreign_packages.cypher) | +| [Type_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.6.8 | 10 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.6.8 | 110 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.6.8 | 17 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.6.8 | 16 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.6.8 | 101 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.6.8/community-csv/Type_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.6.8 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_package_usage_overall.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_overall.csv) | AxonFramework-4.6.8 | 25 | [External_Dependencies/External_package_usage_overall.cypher](./../cypher/External_Dependencies/External_package_usage_overall.cypher) | +| [External_package_usage_per_artifact.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_per_artifact.csv) | AxonFramework-4.6.8 | 60 | [External_Dependencies/External_package_usage_per_artifact.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact.cypher) | +| [External_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.6.8 | 60 | [External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher) | +| [External_package_usage_per_artifact_and_package.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_per_artifact_and_package.csv) | AxonFramework-4.6.8 | 104 | [External_Dependencies/External_package_usage_per_artifact_and_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_package.cypher) | +| [External_package_usage_per_artifact_distribution.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_per_artifact_distribution.csv) | AxonFramework-4.6.8 | 7 | [External_Dependencies/External_package_usage_per_artifact_distribution.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_distribution.cypher) | +| [External_package_usage_per_artifact_package_aggregated.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_per_artifact_package_aggregated.csv) | AxonFramework-4.6.8 | 7 | [External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher) | +| [External_package_usage_per_artifact_sorted_top.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_per_artifact_sorted_top.csv) | AxonFramework-4.6.8 | 7 | [External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher) | +| [External_package_usage_per_type.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_per_type.csv) | AxonFramework-4.6.8 | 440 | [External_Dependencies/External_package_usage_per_type.cypher](./../cypher/External_Dependencies/External_package_usage_per_type.cypher) | +| [External_package_usage_spread.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_package_usage_spread.csv) | AxonFramework-4.6.8 | 46 | [External_Dependencies/External_package_usage_spread.cypher](./../cypher/External_Dependencies/External_package_usage_spread.cypher) | +| [External_second_level_package_usage_overall.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_second_level_package_usage_overall.csv) | AxonFramework-4.6.8 | 17 | [External_Dependencies/External_second_level_package_usage_overall.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_overall.cypher) | +| [External_second_level_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_second_level_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.6.8 | 34 | [External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher) | +| [External_second_level_package_usage_spread.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/External_second_level_package_usage_spread.csv) | AxonFramework-4.6.8 | 20 | [External_Dependencies/External_second_level_package_usage_spread.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_spread.cypher) | +| [Maven_POM_dependencies.csv](./AxonFramework/AxonFramework-4.6.8/external-dependencies-csv/Maven_POM_dependencies.csv) | AxonFramework-4.6.8 | 103 | [External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher](./../cypher/External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher) | +| [ArtifactPackageUsage.csv](./AxonFramework/AxonFramework-4.6.8/internal-dependencies-csv/ArtifactPackageUsage.csv) | AxonFramework-4.6.8 | 5 | [Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher) | +| [ClassesPerPackageUsageAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.6.8/internal-dependencies-csv/ClassesPerPackageUsageAcrossArtifacts.csv) | AxonFramework-4.6.8 | 197 | [Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher) | +| [CyclicArtifactDependenciesUnwinded.csv](./AxonFramework/AxonFramework-4.6.8/internal-dependencies-csv/CyclicArtifactDependenciesUnwinded.csv) | AxonFramework-4.6.8 | 1 | [Cyclic_Dependencies/Cyclic_Dependencies_between_Artrifacts_as_unwinded_List.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_between_Artrifacts_as_unwinded_List.cypher) | +| [Cyclic_Dependencies.csv](./AxonFramework/AxonFramework-4.6.8/internal-dependencies-csv/Cyclic_Dependencies.csv) | AxonFramework-4.6.8 | 22 | [Cyclic_Dependencies/Cyclic_Dependencies.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies.cypher) | +| [Cyclic_Dependencies_Breakdown.csv](./AxonFramework/AxonFramework-4.6.8/internal-dependencies-csv/Cyclic_Dependencies_Breakdown.csv) | AxonFramework-4.6.8 | 346 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher) | +| [Cyclic_Dependencies_Breakdown_Backward_Only.csv](./AxonFramework/AxonFramework-4.6.8/internal-dependencies-csv/Cyclic_Dependencies_Breakdown_Backward_Only.csv) | AxonFramework-4.6.8 | 80 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher) | +| [InterfaceSegregationCandidates.csv](./AxonFramework/AxonFramework-4.6.8/internal-dependencies-csv/InterfaceSegregationCandidates.csv) | AxonFramework-4.6.8 | 203 | [Candidates_for_Interface_Segregation.cypher](./../cypher/Candidates_for_Interface_Segregation.cypher) | +| [WidelyUsedTypes.csv](./AxonFramework/AxonFramework-4.6.8/internal-dependencies-csv/WidelyUsedTypes.csv) | AxonFramework-4.6.8 | 463 | [Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher](./../cypher/Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher) | +| [AnnotatedCodeElements.csv](./AxonFramework/AxonFramework-4.6.8/java-csv/AnnotatedCodeElements.csv) | AxonFramework-4.6.8 | 46 | [Java/Annotated_code_elements.cypher](./../cypher/Java/Annotated_code_elements.cypher) | +| [AnnotatedCodeElementsPerArtifact.csv](./AxonFramework/AxonFramework-4.6.8/java-csv/AnnotatedCodeElementsPerArtifact.csv) | AxonFramework-4.6.8 | 101 | [Java/Annotated_code_elements_per_artifact.cypher](./../cypher/Java/Annotated_code_elements_per_artifact.cypher) | +| [DeprecatedElementUsage.csv](./AxonFramework/AxonFramework-4.6.8/java-csv/DeprecatedElementUsage.csv) | AxonFramework-4.6.8 | 7 | [Java/Java_deprecated_element_usage.cypher](./../cypher/Java/Java_deprecated_element_usage.cypher) | +| [DeprecatedElementUsageDetailed.csv](./AxonFramework/AxonFramework-4.6.8/java-csv/DeprecatedElementUsageDetailed.csv) | AxonFramework-4.6.8 | 48 | [Java/Java_deprecated_element_usage_detailed.cypher](./../cypher/Java/Java_deprecated_element_usage_detailed.cypher) | +| [ReflectionUsage.csv](./AxonFramework/AxonFramework-4.6.8/java-csv/ReflectionUsage.csv) | AxonFramework-4.6.8 | 7 | [Java/Java_Reflection_usage.cypher](./../cypher/Java/Java_Reflection_usage.cypher) | +| [ReflectionUsageDetailed.csv](./AxonFramework/AxonFramework-4.6.8/java-csv/ReflectionUsageDetailed.csv) | AxonFramework-4.6.8 | 106 | [Java/Java_Reflection_usage_detailed.cypher](./../cypher/Java/Java_Reflection_usage_detailed.cypher) | +| [Artifact_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Artifact_Embeddings_HashGNN.csv) | AxonFramework-4.6.8 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Artifact_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.6.8 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Artifact_Embeddings_Node2Vec.csv) | AxonFramework-4.6.8 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Package_Embeddings_HashGNN.csv) | AxonFramework-4.6.8 | 81 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Package_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.6.8 | 81 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Package_Embeddings_Node2Vec.csv) | AxonFramework-4.6.8 | 81 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Type_Embeddings_HashGNN.csv) | AxonFramework-4.6.8 | 1094 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Type_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.6.8 | 1094 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.6.8/node-embeddings-csv/Type_Embeddings_Node2Vec.csv) | AxonFramework-4.6.8 | 1094 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Abstractness.csv](./AxonFramework/AxonFramework-4.6.8/object-oriented-design-metrics-csv/Abstractness.csv) | AxonFramework-4.6.8 | 82 | [Metrics/Calculate_and_set_Abstractness_including_Counts.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_including_Counts.cypher) | +| [IncomingPackageDependencies.csv](./AxonFramework/AxonFramework-4.6.8/object-oriented-design-metrics-csv/IncomingPackageDependencies.csv) | AxonFramework-4.6.8 | 96 | [Metrics/Set_Incoming_Package_Dependencies.cypher](./../cypher/Metrics/Set_Incoming_Package_Dependencies.cypher) | +| [Instability.csv](./AxonFramework/AxonFramework-4.6.8/object-oriented-design-metrics-csv/Instability.csv) | AxonFramework-4.6.8 | 77 | [Metrics/Calculate_and_set_Instability_outgoing_incoming_Dependencies.cypher](./../cypher/Metrics/Calculate_and_set_Instability_outgoing_incoming_Dependencies.cypher) | +| [MainSequenceAbstractnessInstabilityDistance.csv](./AxonFramework/AxonFramework-4.6.8/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistance.csv) | AxonFramework-4.6.8 | 82 | [Metrics/Calculate_distance_between_abstractness_and_instability.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability.cypher) | +| [OutgoingPackageDependencies.csv](./AxonFramework/AxonFramework-4.6.8/object-oriented-design-metrics-csv/OutgoingPackageDependencies.csv) | AxonFramework-4.6.8 | 96 | [Metrics/Set_Outgoing_Package_Dependencies.cypher](./../cypher/Metrics/Set_Outgoing_Package_Dependencies.cypher) | +| [Cyclomatic_Method_Complexity.csv](./AxonFramework/AxonFramework-4.6.8/overview-csv/Cyclomatic_Method_Complexity.csv) | AxonFramework-4.6.8 | 65 | [Overview/Cyclomatic_Method_Complexity_Distribution.cypher](./../cypher/Overview/Cyclomatic_Method_Complexity_Distribution.cypher) | +| [Effective_Method_Line_Count.csv](./AxonFramework/AxonFramework-4.6.8/overview-csv/Effective_Method_Line_Count.csv) | AxonFramework-4.6.8 | 146 | [Overview/Effective_Method_Line_Count_Distribution.cypher](./../cypher/Overview/Effective_Method_Line_Count_Distribution.cypher) | +| [Effective_lines_of_method_code_per_package.csv](./AxonFramework/AxonFramework-4.6.8/overview-csv/Effective_lines_of_method_code_per_package.csv) | AxonFramework-4.6.8 | 82 | [Overview/Effective_lines_of_method_code_per_package.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_package.cypher) | +| [Effective_lines_of_method_code_per_type.csv](./AxonFramework/AxonFramework-4.6.8/overview-csv/Effective_lines_of_method_code_per_type.csv) | AxonFramework-4.6.8 | 887 | [Overview/Effective_lines_of_method_code_per_type.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_type.cypher) | +| [Number_of_packages_per_artifact.csv](./AxonFramework/AxonFramework-4.6.8/overview-csv/Number_of_packages_per_artifact.csv) | AxonFramework-4.6.8 | 7 | [Overview/Number_of_packages_per_artifact.cypher](./../cypher/Overview/Number_of_packages_per_artifact.cypher) | +| [Number_of_types_per_artifact.csv](./AxonFramework/AxonFramework-4.6.8/overview-csv/Number_of_types_per_artifact.csv) | AxonFramework-4.6.8 | 20 | [Overview/Number_of_types_per_artifact.cypher](./../cypher/Overview/Number_of_types_per_artifact.cypher) | +| [Overview_size.csv](./AxonFramework/AxonFramework-4.6.8/overview-csv/Overview_size.csv) | AxonFramework-4.6.8 | 2 | [Overview/Overview_size.cypher](./../cypher/Overview/Overview_size.cypher) | +| [Artifact_Similarity.csv](./AxonFramework/AxonFramework-4.6.8/similarity-csv/Artifact_Similarity.csv) | AxonFramework-4.6.8 | 16 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Package_Similarity.csv](./AxonFramework/AxonFramework-4.6.8/similarity-csv/Package_Similarity.csv) | AxonFramework-4.6.8 | 199 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Type_Similarity.csv](./AxonFramework/AxonFramework-4.6.8/similarity-csv/Type_Similarity.csv) | AxonFramework-4.6.8 | 2855 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Artifact_Topological_Sort.csv](./AxonFramework/AxonFramework-4.6.8/topology-csv/Artifact_Topological_Sort.csv) | AxonFramework-4.6.8 | 7 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Package_Topological_Sort.csv](./AxonFramework/AxonFramework-4.6.8/topology-csv/Package_Topological_Sort.csv) | AxonFramework-4.6.8 | 40 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Type_Topological_Sort.csv](./AxonFramework/AxonFramework-4.6.8/topology-csv/Type_Topological_Sort.csv) | AxonFramework-4.6.8 | 156 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerArtifact.csv](./AxonFramework/AxonFramework-4.6.8/visibility-metrics-csv/RelativeVisibilityPerArtifact.csv) | AxonFramework-4.6.8 | 7 | [Visibility/Global_relative_visibility_statistics_for_types.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_types.cypher) | +| [RelativeVisibilityPerPackage.csv](./AxonFramework/AxonFramework-4.6.8/visibility-metrics-csv/RelativeVisibilityPerPackage.csv) | AxonFramework-4.6.8 | 82 | [Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher](./../cypher/Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher) | +| [DependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.7.6/artifact-dependencies-csv/DependenciesAcrossArtifacts.csv) | AxonFramework-4.7.6 | 10 | [Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher) | +| [DuplicatePackageNamesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.7.6/artifact-dependencies-csv/DuplicatePackageNamesAcrossArtifacts.csv) | AxonFramework-4.7.6 | 1 | [Artifact_Dependencies/Artifacts_with_duplicate_packages.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_duplicate_packages.cypher) | +| [InternalArtifactUsageSpreadPerDependency.csv](./AxonFramework/AxonFramework-4.7.6/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependency.csv) | AxonFramework-4.7.6 | 5 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher) | +| [InternalArtifactUsageSpreadPerDependent.csv](./AxonFramework/AxonFramework-4.7.6/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependent.csv) | AxonFramework-4.7.6 | 7 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher) | +| [MostUsedDependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.7.6/artifact-dependencies-csv/MostUsedDependenciesAcrossArtifacts.csv) | AxonFramework-4.7.6 | 5 | [Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher](./../cypher/Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher) | +| [Artifact_Centrality_All.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Artifact_Centrality_All.csv) | AxonFramework-4.7.6 | 7 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Artifact_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Artifact_Centrality_Article_Rank.csv) | AxonFramework-4.7.6 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Artifact_Centrality_Betweeness.csv) | AxonFramework-4.7.6 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.7.6 | 7 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Artifact_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Artifact_Centrality_Page_Rank.csv) | AxonFramework-4.7.6 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Artifact_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.7.6 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Artifact_Harmonic_Closeness.csv) | AxonFramework-4.7.6 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_All.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Method_Centrality_All.csv) | AxonFramework-4.7.6 | 1 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Method_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Method_Centrality_Article_Rank.csv) | AxonFramework-4.7.6 | 940 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Method_Centrality_Betweeness.csv) | AxonFramework-4.7.6 | 925 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.7.6 | 990 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Method_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Method_Centrality_Page_Rank.csv) | AxonFramework-4.7.6 | 938 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Method_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.7.6 | 893 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Method_Harmonic_Closeness.csv) | AxonFramework-4.7.6 | 925 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_All.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Package_Centrality_All.csv) | AxonFramework-4.7.6 | 90 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Package_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Package_Centrality_Article_Rank.csv) | AxonFramework-4.7.6 | 90 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Package_Centrality_Betweeness.csv) | AxonFramework-4.7.6 | 90 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.7.6 | 90 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Package_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Package_Centrality_Page_Rank.csv) | AxonFramework-4.7.6 | 90 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Package_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.7.6 | 90 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Package_Harmonic_Closeness.csv) | AxonFramework-4.7.6 | 90 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_All.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Type_Centrality_All.csv) | AxonFramework-4.7.6 | 1138 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Type_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Type_Centrality_Article_Rank.csv) | AxonFramework-4.7.6 | 1138 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Type_Centrality_Betweeness.csv) | AxonFramework-4.7.6 | 1138 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.7.6 | 1138 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Type_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Type_Centrality_Page_Rank.csv) | AxonFramework-4.7.6 | 1138 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Type_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.7.6 | 1138 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.7.6/centrality-csv/Type_Harmonic_Closeness.csv) | AxonFramework-4.7.6 | 1138 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_All_Communities.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_All_Communities.csv) | AxonFramework-4.7.6 | 7 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Artifact_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.7.6 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_Communities_K_Core_Decomposition.csv) | AxonFramework-4.7.6 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_Communities_Label_Propagation.csv) | AxonFramework-4.7.6 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_Communities_Louvain.csv) | AxonFramework-4.7.6 | 2 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Artifact_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.7.6 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.7.6 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Artifact_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.7.6 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.7.6 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.7.6 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.7.6 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.7.6 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.7.6 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_All_Communities.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_All_Communities.csv) | AxonFramework-4.7.6 | 90 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Package_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.7.6 | 21 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_Communities_K_Core_Decomposition.csv) | AxonFramework-4.7.6 | 9 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_Communities_Label_Propagation.csv) | AxonFramework-4.7.6 | 14 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.7.6 | 1 | [Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher](./../cypher/Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher) | +| [Package_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_Communities_Louvain.csv) | AxonFramework-4.7.6 | 17 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Package_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.7.6 | 8 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.7.6 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Package_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.7.6 | 9 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.7.6 | 14 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.7.6 | 12 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.7.6 | 11 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.7.6 | 21 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Package_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.7.6 | 8 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_All_Communities.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_All_Communities.csv) | AxonFramework-4.7.6 | 1138 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Type_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.7.6 | 101 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_Communities_K_Core_Decomposition.csv) | AxonFramework-4.7.6 | 11 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_Communities_Label_Propagation.csv) | AxonFramework-4.7.6 | 108 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.7.6 | 13 | [Community_Detection/Which_type_community_spans_several_artifacts_and_how_are_the_types_distributed.cypher](./../cypher/Community_Detection/Which_type_community_spans_several_artifacts_and_how_are_the_types_distributed.cypher) | +| [Type_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_Communities_Louvain.csv) | AxonFramework-4.7.6 | 145 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Type_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.7.6 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.7.6 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Type_communities_that_span_the_most_packages_with_type_statistics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_communities_that_span_the_most_packages_with_type_statistics.csv) | AxonFramework-4.7.6 | 46 | [Community_Detection/Type_communities_that_span_the_most_packages_with_type_statistics.cypher](./../cypher/Community_Detection/Type_communities_that_span_the_most_packages_with_type_statistics.cypher) | +| [Type_communities_with_few_members_in_foreign_packages.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_communities_with_few_members_in_foreign_packages.csv) | AxonFramework-4.7.6 | 174 | [Community_Detection/Type_communities_with_few_members_in_foreign_packages.cypher](./../cypher/Community_Detection/Type_communities_with_few_members_in_foreign_packages.cypher) | +| [Type_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.7.6 | 11 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.7.6 | 108 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.7.6 | 17 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.7.6 | 16 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.7.6 | 101 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.7.6/community-csv/Type_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.7.6 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_package_usage_overall.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_overall.csv) | AxonFramework-4.7.6 | 27 | [External_Dependencies/External_package_usage_overall.cypher](./../cypher/External_Dependencies/External_package_usage_overall.cypher) | +| [External_package_usage_per_artifact.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_per_artifact.csv) | AxonFramework-4.7.6 | 65 | [External_Dependencies/External_package_usage_per_artifact.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact.cypher) | +| [External_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.7.6 | 65 | [External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher) | +| [External_package_usage_per_artifact_and_package.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_per_artifact_and_package.csv) | AxonFramework-4.7.6 | 122 | [External_Dependencies/External_package_usage_per_artifact_and_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_package.cypher) | +| [External_package_usage_per_artifact_distribution.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_per_artifact_distribution.csv) | AxonFramework-4.7.6 | 7 | [External_Dependencies/External_package_usage_per_artifact_distribution.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_distribution.cypher) | +| [External_package_usage_per_artifact_package_aggregated.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_per_artifact_package_aggregated.csv) | AxonFramework-4.7.6 | 7 | [External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher) | +| [External_package_usage_per_artifact_sorted_top.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_per_artifact_sorted_top.csv) | AxonFramework-4.7.6 | 7 | [External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher) | +| [External_package_usage_per_type.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_per_type.csv) | AxonFramework-4.7.6 | 467 | [External_Dependencies/External_package_usage_per_type.cypher](./../cypher/External_Dependencies/External_package_usage_per_type.cypher) | +| [External_package_usage_spread.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_package_usage_spread.csv) | AxonFramework-4.7.6 | 49 | [External_Dependencies/External_package_usage_spread.cypher](./../cypher/External_Dependencies/External_package_usage_spread.cypher) | +| [External_second_level_package_usage_overall.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_second_level_package_usage_overall.csv) | AxonFramework-4.7.6 | 19 | [External_Dependencies/External_second_level_package_usage_overall.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_overall.cypher) | +| [External_second_level_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_second_level_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.7.6 | 39 | [External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher) | +| [External_second_level_package_usage_spread.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/External_second_level_package_usage_spread.csv) | AxonFramework-4.7.6 | 23 | [External_Dependencies/External_second_level_package_usage_spread.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_spread.cypher) | +| [Maven_POM_dependencies.csv](./AxonFramework/AxonFramework-4.7.6/external-dependencies-csv/Maven_POM_dependencies.csv) | AxonFramework-4.7.6 | 110 | [External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher](./../cypher/External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher) | +| [ArtifactPackageUsage.csv](./AxonFramework/AxonFramework-4.7.6/internal-dependencies-csv/ArtifactPackageUsage.csv) | AxonFramework-4.7.6 | 5 | [Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher) | +| [ClassesPerPackageUsageAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.7.6/internal-dependencies-csv/ClassesPerPackageUsageAcrossArtifacts.csv) | AxonFramework-4.7.6 | 220 | [Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher) | +| [CyclicArtifactDependenciesUnwinded.csv](./AxonFramework/AxonFramework-4.7.6/internal-dependencies-csv/CyclicArtifactDependenciesUnwinded.csv) | AxonFramework-4.7.6 | 1 | [Cyclic_Dependencies/Cyclic_Dependencies_between_Artrifacts_as_unwinded_List.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_between_Artrifacts_as_unwinded_List.cypher) | +| [Cyclic_Dependencies.csv](./AxonFramework/AxonFramework-4.7.6/internal-dependencies-csv/Cyclic_Dependencies.csv) | AxonFramework-4.7.6 | 23 | [Cyclic_Dependencies/Cyclic_Dependencies.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies.cypher) | +| [Cyclic_Dependencies_Breakdown.csv](./AxonFramework/AxonFramework-4.7.6/internal-dependencies-csv/Cyclic_Dependencies_Breakdown.csv) | AxonFramework-4.7.6 | 362 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher) | +| [Cyclic_Dependencies_Breakdown_Backward_Only.csv](./AxonFramework/AxonFramework-4.7.6/internal-dependencies-csv/Cyclic_Dependencies_Breakdown_Backward_Only.csv) | AxonFramework-4.7.6 | 83 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher) | +| [InterfaceSegregationCandidates.csv](./AxonFramework/AxonFramework-4.7.6/internal-dependencies-csv/InterfaceSegregationCandidates.csv) | AxonFramework-4.7.6 | 211 | [Candidates_for_Interface_Segregation.cypher](./../cypher/Candidates_for_Interface_Segregation.cypher) | +| [WidelyUsedTypes.csv](./AxonFramework/AxonFramework-4.7.6/internal-dependencies-csv/WidelyUsedTypes.csv) | AxonFramework-4.7.6 | 476 | [Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher](./../cypher/Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher) | +| [AnnotatedCodeElements.csv](./AxonFramework/AxonFramework-4.7.6/java-csv/AnnotatedCodeElements.csv) | AxonFramework-4.7.6 | 57 | [Java/Annotated_code_elements.cypher](./../cypher/Java/Annotated_code_elements.cypher) | +| [AnnotatedCodeElementsPerArtifact.csv](./AxonFramework/AxonFramework-4.7.6/java-csv/AnnotatedCodeElementsPerArtifact.csv) | AxonFramework-4.7.6 | 126 | [Java/Annotated_code_elements_per_artifact.cypher](./../cypher/Java/Annotated_code_elements_per_artifact.cypher) | +| [DeprecatedElementUsage.csv](./AxonFramework/AxonFramework-4.7.6/java-csv/DeprecatedElementUsage.csv) | AxonFramework-4.7.6 | 12 | [Java/Java_deprecated_element_usage.cypher](./../cypher/Java/Java_deprecated_element_usage.cypher) | +| [DeprecatedElementUsageDetailed.csv](./AxonFramework/AxonFramework-4.7.6/java-csv/DeprecatedElementUsageDetailed.csv) | AxonFramework-4.7.6 | 66 | [Java/Java_deprecated_element_usage_detailed.cypher](./../cypher/Java/Java_deprecated_element_usage_detailed.cypher) | +| [ReflectionUsage.csv](./AxonFramework/AxonFramework-4.7.6/java-csv/ReflectionUsage.csv) | AxonFramework-4.7.6 | 7 | [Java/Java_Reflection_usage.cypher](./../cypher/Java/Java_Reflection_usage.cypher) | +| [ReflectionUsageDetailed.csv](./AxonFramework/AxonFramework-4.7.6/java-csv/ReflectionUsageDetailed.csv) | AxonFramework-4.7.6 | 107 | [Java/Java_Reflection_usage_detailed.cypher](./../cypher/Java/Java_Reflection_usage_detailed.cypher) | +| [Artifact_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Artifact_Embeddings_HashGNN.csv) | AxonFramework-4.7.6 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Artifact_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.7.6 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Artifact_Embeddings_Node2Vec.csv) | AxonFramework-4.7.6 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Package_Embeddings_HashGNN.csv) | AxonFramework-4.7.6 | 90 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Package_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.7.6 | 90 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Package_Embeddings_Node2Vec.csv) | AxonFramework-4.7.6 | 90 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Type_Embeddings_HashGNN.csv) | AxonFramework-4.7.6 | 1138 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Type_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.7.6 | 1138 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.7.6/node-embeddings-csv/Type_Embeddings_Node2Vec.csv) | AxonFramework-4.7.6 | 1138 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Abstractness.csv](./AxonFramework/AxonFramework-4.7.6/object-oriented-design-metrics-csv/Abstractness.csv) | AxonFramework-4.7.6 | 91 | [Metrics/Calculate_and_set_Abstractness_including_Counts.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_including_Counts.cypher) | +| [IncomingPackageDependencies.csv](./AxonFramework/AxonFramework-4.7.6/object-oriented-design-metrics-csv/IncomingPackageDependencies.csv) | AxonFramework-4.7.6 | 105 | [Metrics/Set_Incoming_Package_Dependencies.cypher](./../cypher/Metrics/Set_Incoming_Package_Dependencies.cypher) | +| [Instability.csv](./AxonFramework/AxonFramework-4.7.6/object-oriented-design-metrics-csv/Instability.csv) | AxonFramework-4.7.6 | 86 | [Metrics/Calculate_and_set_Instability_outgoing_incoming_Dependencies.cypher](./../cypher/Metrics/Calculate_and_set_Instability_outgoing_incoming_Dependencies.cypher) | +| [MainSequenceAbstractnessInstabilityDistance.csv](./AxonFramework/AxonFramework-4.7.6/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistance.csv) | AxonFramework-4.7.6 | 91 | [Metrics/Calculate_distance_between_abstractness_and_instability.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability.cypher) | +| [OutgoingPackageDependencies.csv](./AxonFramework/AxonFramework-4.7.6/object-oriented-design-metrics-csv/OutgoingPackageDependencies.csv) | AxonFramework-4.7.6 | 105 | [Metrics/Set_Outgoing_Package_Dependencies.cypher](./../cypher/Metrics/Set_Outgoing_Package_Dependencies.cypher) | +| [Cyclomatic_Method_Complexity.csv](./AxonFramework/AxonFramework-4.7.6/overview-csv/Cyclomatic_Method_Complexity.csv) | AxonFramework-4.7.6 | 65 | [Overview/Cyclomatic_Method_Complexity_Distribution.cypher](./../cypher/Overview/Cyclomatic_Method_Complexity_Distribution.cypher) | +| [Effective_Method_Line_Count.csv](./AxonFramework/AxonFramework-4.7.6/overview-csv/Effective_Method_Line_Count.csv) | AxonFramework-4.7.6 | 150 | [Overview/Effective_Method_Line_Count_Distribution.cypher](./../cypher/Overview/Effective_Method_Line_Count_Distribution.cypher) | +| [Effective_lines_of_method_code_per_package.csv](./AxonFramework/AxonFramework-4.7.6/overview-csv/Effective_lines_of_method_code_per_package.csv) | AxonFramework-4.7.6 | 91 | [Overview/Effective_lines_of_method_code_per_package.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_package.cypher) | +| [Effective_lines_of_method_code_per_type.csv](./AxonFramework/AxonFramework-4.7.6/overview-csv/Effective_lines_of_method_code_per_type.csv) | AxonFramework-4.7.6 | 927 | [Overview/Effective_lines_of_method_code_per_type.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_type.cypher) | +| [Number_of_packages_per_artifact.csv](./AxonFramework/AxonFramework-4.7.6/overview-csv/Number_of_packages_per_artifact.csv) | AxonFramework-4.7.6 | 7 | [Overview/Number_of_packages_per_artifact.cypher](./../cypher/Overview/Number_of_packages_per_artifact.cypher) | +| [Number_of_types_per_artifact.csv](./AxonFramework/AxonFramework-4.7.6/overview-csv/Number_of_types_per_artifact.csv) | AxonFramework-4.7.6 | 20 | [Overview/Number_of_types_per_artifact.cypher](./../cypher/Overview/Number_of_types_per_artifact.cypher) | +| [Overview_size.csv](./AxonFramework/AxonFramework-4.7.6/overview-csv/Overview_size.csv) | AxonFramework-4.7.6 | 2 | [Overview/Overview_size.cypher](./../cypher/Overview/Overview_size.cypher) | +| [Artifact_Similarity.csv](./AxonFramework/AxonFramework-4.7.6/similarity-csv/Artifact_Similarity.csv) | AxonFramework-4.7.6 | 16 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Package_Similarity.csv](./AxonFramework/AxonFramework-4.7.6/similarity-csv/Package_Similarity.csv) | AxonFramework-4.7.6 | 228 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Type_Similarity.csv](./AxonFramework/AxonFramework-4.7.6/similarity-csv/Type_Similarity.csv) | AxonFramework-4.7.6 | 2982 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Artifact_Topological_Sort.csv](./AxonFramework/AxonFramework-4.7.6/topology-csv/Artifact_Topological_Sort.csv) | AxonFramework-4.7.6 | 7 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Package_Topological_Sort.csv](./AxonFramework/AxonFramework-4.7.6/topology-csv/Package_Topological_Sort.csv) | AxonFramework-4.7.6 | 50 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Type_Topological_Sort.csv](./AxonFramework/AxonFramework-4.7.6/topology-csv/Type_Topological_Sort.csv) | AxonFramework-4.7.6 | 165 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerArtifact.csv](./AxonFramework/AxonFramework-4.7.6/visibility-metrics-csv/RelativeVisibilityPerArtifact.csv) | AxonFramework-4.7.6 | 7 | [Visibility/Global_relative_visibility_statistics_for_types.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_types.cypher) | +| [RelativeVisibilityPerPackage.csv](./AxonFramework/AxonFramework-4.7.6/visibility-metrics-csv/RelativeVisibilityPerPackage.csv) | AxonFramework-4.7.6 | 91 | [Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher](./../cypher/Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher) | +| [DependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.8.3/artifact-dependencies-csv/DependenciesAcrossArtifacts.csv) | AxonFramework-4.8.3 | 10 | [Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher) | +| [DuplicatePackageNamesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.8.3/artifact-dependencies-csv/DuplicatePackageNamesAcrossArtifacts.csv) | AxonFramework-4.8.3 | 1 | [Artifact_Dependencies/Artifacts_with_duplicate_packages.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_duplicate_packages.cypher) | +| [InternalArtifactUsageSpreadPerDependency.csv](./AxonFramework/AxonFramework-4.8.3/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependency.csv) | AxonFramework-4.8.3 | 5 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher) | +| [InternalArtifactUsageSpreadPerDependent.csv](./AxonFramework/AxonFramework-4.8.3/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependent.csv) | AxonFramework-4.8.3 | 7 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher) | +| [MostUsedDependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.8.3/artifact-dependencies-csv/MostUsedDependenciesAcrossArtifacts.csv) | AxonFramework-4.8.3 | 5 | [Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher](./../cypher/Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher) | +| [Artifact_Centrality_All.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Artifact_Centrality_All.csv) | AxonFramework-4.8.3 | 7 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Artifact_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Artifact_Centrality_Article_Rank.csv) | AxonFramework-4.8.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Artifact_Centrality_Betweeness.csv) | AxonFramework-4.8.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.8.3 | 7 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Artifact_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Artifact_Centrality_Page_Rank.csv) | AxonFramework-4.8.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Artifact_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.8.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Artifact_Harmonic_Closeness.csv) | AxonFramework-4.8.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_All.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Method_Centrality_All.csv) | AxonFramework-4.8.3 | 1 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Method_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Method_Centrality_Article_Rank.csv) | AxonFramework-4.8.3 | 1029 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Method_Centrality_Betweeness.csv) | AxonFramework-4.8.3 | 1014 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.8.3 | 1087 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Method_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Method_Centrality_Page_Rank.csv) | AxonFramework-4.8.3 | 1027 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Method_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.8.3 | 981 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Method_Harmonic_Closeness.csv) | AxonFramework-4.8.3 | 1014 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_All.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Package_Centrality_All.csv) | AxonFramework-4.8.3 | 94 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Package_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Package_Centrality_Article_Rank.csv) | AxonFramework-4.8.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Package_Centrality_Betweeness.csv) | AxonFramework-4.8.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.8.3 | 94 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Package_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Package_Centrality_Page_Rank.csv) | AxonFramework-4.8.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Package_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.8.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Package_Harmonic_Closeness.csv) | AxonFramework-4.8.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_All.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Type_Centrality_All.csv) | AxonFramework-4.8.3 | 1174 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Type_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Type_Centrality_Article_Rank.csv) | AxonFramework-4.8.3 | 1174 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Type_Centrality_Betweeness.csv) | AxonFramework-4.8.3 | 1174 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.8.3 | 1174 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Type_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Type_Centrality_Page_Rank.csv) | AxonFramework-4.8.3 | 1174 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Type_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.8.3 | 1174 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.8.3/centrality-csv/Type_Harmonic_Closeness.csv) | AxonFramework-4.8.3 | 1174 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_All_Communities.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_All_Communities.csv) | AxonFramework-4.8.3 | 7 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Artifact_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.8.3 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_Communities_K_Core_Decomposition.csv) | AxonFramework-4.8.3 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_Communities_Label_Propagation.csv) | AxonFramework-4.8.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_Communities_Louvain.csv) | AxonFramework-4.8.3 | 2 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Artifact_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.8.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.8.3 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Artifact_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.8.3 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.8.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.8.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.8.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.8.3 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.8.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_All_Communities.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_All_Communities.csv) | AxonFramework-4.8.3 | 94 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Package_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.8.3 | 21 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_Communities_K_Core_Decomposition.csv) | AxonFramework-4.8.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_Communities_Label_Propagation.csv) | AxonFramework-4.8.3 | 14 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.8.3 | 1 | [Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher](./../cypher/Community_Detection/Which_package_community_spans_several_artifacts_and_how_are_the_packages_distributed.cypher) | +| [Package_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_Communities_Louvain.csv) | AxonFramework-4.8.3 | 16 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Package_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.8.3 | 9 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.8.3 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Package_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.8.3 | 10 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.8.3 | 14 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.8.3 | 13 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.8.3 | 13 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.8.3 | 21 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Package_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.8.3 | 9 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_All_Communities.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_All_Communities.csv) | AxonFramework-4.8.3 | 1174 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Type_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.8.3 | 101 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_Communities_K_Core_Decomposition.csv) | AxonFramework-4.8.3 | 11 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_Communities_Label_Propagation.csv) | AxonFramework-4.8.3 | 100 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.8.3 | 13 | [Community_Detection/Which_type_community_spans_several_artifacts_and_how_are_the_types_distributed.cypher](./../cypher/Community_Detection/Which_type_community_spans_several_artifacts_and_how_are_the_types_distributed.cypher) | +| [Type_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_Communities_Louvain.csv) | AxonFramework-4.8.3 | 149 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Type_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.8.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Compare_Louvain_with_Leiden.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_Compare_Louvain_with_Leiden.csv) | AxonFramework-4.8.3 | 1 | [Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher](./../cypher/Community_Detection/Compare_Louvain_vs_Leiden_Results.cypher) | +| [Type_communities_that_span_the_most_packages_with_type_statistics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_communities_that_span_the_most_packages_with_type_statistics.csv) | AxonFramework-4.8.3 | 46 | [Community_Detection/Type_communities_that_span_the_most_packages_with_type_statistics.cypher](./../cypher/Community_Detection/Type_communities_that_span_the_most_packages_with_type_statistics.cypher) | +| [Type_communities_with_few_members_in_foreign_packages.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_communities_with_few_members_in_foreign_packages.csv) | AxonFramework-4.8.3 | 180 | [Community_Detection/Type_communities_with_few_members_in_foreign_packages.cypher](./../cypher/Community_Detection/Type_communities_with_few_members_in_foreign_packages.cypher) | +| [Type_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.8.3 | 11 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.8.3 | 100 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.8.3 | 17 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.8.3 | 15 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.8.3 | 101 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.8.3/community-csv/Type_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.8.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_package_usage_overall.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_overall.csv) | AxonFramework-4.8.3 | 34 | [External_Dependencies/External_package_usage_overall.cypher](./../cypher/External_Dependencies/External_package_usage_overall.cypher) | +| [External_package_usage_per_artifact.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_per_artifact.csv) | AxonFramework-4.8.3 | 73 | [External_Dependencies/External_package_usage_per_artifact.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact.cypher) | +| [External_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.8.3 | 73 | [External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher) | +| [External_package_usage_per_artifact_and_package.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_per_artifact_and_package.csv) | AxonFramework-4.8.3 | 138 | [External_Dependencies/External_package_usage_per_artifact_and_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_package.cypher) | +| [External_package_usage_per_artifact_distribution.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_per_artifact_distribution.csv) | AxonFramework-4.8.3 | 7 | [External_Dependencies/External_package_usage_per_artifact_distribution.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_distribution.cypher) | +| [External_package_usage_per_artifact_package_aggregated.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_per_artifact_package_aggregated.csv) | AxonFramework-4.8.3 | 7 | [External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher) | +| [External_package_usage_per_artifact_sorted_top.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_per_artifact_sorted_top.csv) | AxonFramework-4.8.3 | 7 | [External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher) | +| [External_package_usage_per_type.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_per_type.csv) | AxonFramework-4.8.3 | 488 | [External_Dependencies/External_package_usage_per_type.cypher](./../cypher/External_Dependencies/External_package_usage_per_type.cypher) | +| [External_package_usage_spread.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_package_usage_spread.csv) | AxonFramework-4.8.3 | 57 | [External_Dependencies/External_package_usage_spread.cypher](./../cypher/External_Dependencies/External_package_usage_spread.cypher) | +| [External_second_level_package_usage_overall.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_second_level_package_usage_overall.csv) | AxonFramework-4.8.3 | 23 | [External_Dependencies/External_second_level_package_usage_overall.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_overall.cypher) | +| [External_second_level_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_second_level_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.8.3 | 42 | [External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher) | +| [External_second_level_package_usage_spread.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/External_second_level_package_usage_spread.csv) | AxonFramework-4.8.3 | 26 | [External_Dependencies/External_second_level_package_usage_spread.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_spread.cypher) | +| [Maven_POM_dependencies.csv](./AxonFramework/AxonFramework-4.8.3/external-dependencies-csv/Maven_POM_dependencies.csv) | AxonFramework-4.8.3 | 115 | [External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher](./../cypher/External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher) | +| [ArtifactPackageUsage.csv](./AxonFramework/AxonFramework-4.8.3/internal-dependencies-csv/ArtifactPackageUsage.csv) | AxonFramework-4.8.3 | 5 | [Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher) | +| [ClassesPerPackageUsageAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.8.3/internal-dependencies-csv/ClassesPerPackageUsageAcrossArtifacts.csv) | AxonFramework-4.8.3 | 221 | [Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher) | +| [CyclicArtifactDependenciesUnwinded.csv](./AxonFramework/AxonFramework-4.8.3/internal-dependencies-csv/CyclicArtifactDependenciesUnwinded.csv) | AxonFramework-4.8.3 | 1 | [Cyclic_Dependencies/Cyclic_Dependencies_between_Artrifacts_as_unwinded_List.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_between_Artrifacts_as_unwinded_List.cypher) | +| [Cyclic_Dependencies.csv](./AxonFramework/AxonFramework-4.8.3/internal-dependencies-csv/Cyclic_Dependencies.csv) | AxonFramework-4.8.3 | 23 | [Cyclic_Dependencies/Cyclic_Dependencies.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies.cypher) | +| [Cyclic_Dependencies_Breakdown.csv](./AxonFramework/AxonFramework-4.8.3/internal-dependencies-csv/Cyclic_Dependencies_Breakdown.csv) | AxonFramework-4.8.3 | 362 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher) | +| [Cyclic_Dependencies_Breakdown_Backward_Only.csv](./AxonFramework/AxonFramework-4.8.3/internal-dependencies-csv/Cyclic_Dependencies_Breakdown_Backward_Only.csv) | AxonFramework-4.8.3 | 83 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher) | +| [InterfaceSegregationCandidates.csv](./AxonFramework/AxonFramework-4.8.3/internal-dependencies-csv/InterfaceSegregationCandidates.csv) | AxonFramework-4.8.3 | 215 | [Candidates_for_Interface_Segregation.cypher](./../cypher/Candidates_for_Interface_Segregation.cypher) | +| [WidelyUsedTypes.csv](./AxonFramework/AxonFramework-4.8.3/internal-dependencies-csv/WidelyUsedTypes.csv) | AxonFramework-4.8.3 | 480 | [Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher](./../cypher/Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher) | +| [AnnotatedCodeElements.csv](./AxonFramework/AxonFramework-4.8.3/java-csv/AnnotatedCodeElements.csv) | AxonFramework-4.8.3 | 57 | [Java/Annotated_code_elements.cypher](./../cypher/Java/Annotated_code_elements.cypher) | +| [AnnotatedCodeElementsPerArtifact.csv](./AxonFramework/AxonFramework-4.8.3/java-csv/AnnotatedCodeElementsPerArtifact.csv) | AxonFramework-4.8.3 | 126 | [Java/Annotated_code_elements_per_artifact.cypher](./../cypher/Java/Annotated_code_elements_per_artifact.cypher) | +| [DeprecatedElementUsage.csv](./AxonFramework/AxonFramework-4.8.3/java-csv/DeprecatedElementUsage.csv) | AxonFramework-4.8.3 | 12 | [Java/Java_deprecated_element_usage.cypher](./../cypher/Java/Java_deprecated_element_usage.cypher) | +| [DeprecatedElementUsageDetailed.csv](./AxonFramework/AxonFramework-4.8.3/java-csv/DeprecatedElementUsageDetailed.csv) | AxonFramework-4.8.3 | 65 | [Java/Java_deprecated_element_usage_detailed.cypher](./../cypher/Java/Java_deprecated_element_usage_detailed.cypher) | +| [ReflectionUsage.csv](./AxonFramework/AxonFramework-4.8.3/java-csv/ReflectionUsage.csv) | AxonFramework-4.8.3 | 7 | [Java/Java_Reflection_usage.cypher](./../cypher/Java/Java_Reflection_usage.cypher) | +| [ReflectionUsageDetailed.csv](./AxonFramework/AxonFramework-4.8.3/java-csv/ReflectionUsageDetailed.csv) | AxonFramework-4.8.3 | 105 | [Java/Java_Reflection_usage_detailed.cypher](./../cypher/Java/Java_Reflection_usage_detailed.cypher) | +| [Artifact_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Artifact_Embeddings_HashGNN.csv) | AxonFramework-4.8.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Artifact_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.8.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Artifact_Embeddings_Node2Vec.csv) | AxonFramework-4.8.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Package_Embeddings_HashGNN.csv) | AxonFramework-4.8.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Package_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.8.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Package_Embeddings_Node2Vec.csv) | AxonFramework-4.8.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Type_Embeddings_HashGNN.csv) | AxonFramework-4.8.3 | 1174 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Type_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.8.3 | 1174 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.8.3/node-embeddings-csv/Type_Embeddings_Node2Vec.csv) | AxonFramework-4.8.3 | 1174 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Abstractness.csv](./AxonFramework/AxonFramework-4.8.3/object-oriented-design-metrics-csv/Abstractness.csv) | AxonFramework-4.8.3 | 94 | [Metrics/Calculate_and_set_Abstractness_including_Counts.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_including_Counts.cypher) | +| [IncomingPackageDependencies.csv](./AxonFramework/AxonFramework-4.8.3/object-oriented-design-metrics-csv/IncomingPackageDependencies.csv) | AxonFramework-4.8.3 | 108 | [Metrics/Set_Incoming_Package_Dependencies.cypher](./../cypher/Metrics/Set_Incoming_Package_Dependencies.cypher) | +| [Instability.csv](./AxonFramework/AxonFramework-4.8.3/object-oriented-design-metrics-csv/Instability.csv) | AxonFramework-4.8.3 | 90 | [Metrics/Calculate_and_set_Instability_outgoing_incoming_Dependencies.cypher](./../cypher/Metrics/Calculate_and_set_Instability_outgoing_incoming_Dependencies.cypher) | +| [MainSequenceAbstractnessInstabilityDistance.csv](./AxonFramework/AxonFramework-4.8.3/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistance.csv) | AxonFramework-4.8.3 | 94 | [Metrics/Calculate_distance_between_abstractness_and_instability.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability.cypher) | +| [OutgoingPackageDependencies.csv](./AxonFramework/AxonFramework-4.8.3/object-oriented-design-metrics-csv/OutgoingPackageDependencies.csv) | AxonFramework-4.8.3 | 108 | [Metrics/Set_Outgoing_Package_Dependencies.cypher](./../cypher/Metrics/Set_Outgoing_Package_Dependencies.cypher) | +| [Cyclomatic_Method_Complexity.csv](./AxonFramework/AxonFramework-4.8.3/overview-csv/Cyclomatic_Method_Complexity.csv) | AxonFramework-4.8.3 | 66 | [Overview/Cyclomatic_Method_Complexity_Distribution.cypher](./../cypher/Overview/Cyclomatic_Method_Complexity_Distribution.cypher) | +| [Effective_Method_Line_Count.csv](./AxonFramework/AxonFramework-4.8.3/overview-csv/Effective_Method_Line_Count.csv) | AxonFramework-4.8.3 | 153 | [Overview/Effective_Method_Line_Count_Distribution.cypher](./../cypher/Overview/Effective_Method_Line_Count_Distribution.cypher) | +| [Effective_lines_of_method_code_per_package.csv](./AxonFramework/AxonFramework-4.8.3/overview-csv/Effective_lines_of_method_code_per_package.csv) | AxonFramework-4.8.3 | 94 | [Overview/Effective_lines_of_method_code_per_package.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_package.cypher) | +| [Effective_lines_of_method_code_per_type.csv](./AxonFramework/AxonFramework-4.8.3/overview-csv/Effective_lines_of_method_code_per_type.csv) | AxonFramework-4.8.3 | 960 | [Overview/Effective_lines_of_method_code_per_type.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_type.cypher) | +| [Number_of_packages_per_artifact.csv](./AxonFramework/AxonFramework-4.8.3/overview-csv/Number_of_packages_per_artifact.csv) | AxonFramework-4.8.3 | 7 | [Overview/Number_of_packages_per_artifact.cypher](./../cypher/Overview/Number_of_packages_per_artifact.cypher) | +| [Number_of_types_per_artifact.csv](./AxonFramework/AxonFramework-4.8.3/overview-csv/Number_of_types_per_artifact.csv) | AxonFramework-4.8.3 | 20 | [Overview/Number_of_types_per_artifact.cypher](./../cypher/Overview/Number_of_types_per_artifact.cypher) | +| [Overview_size.csv](./AxonFramework/AxonFramework-4.8.3/overview-csv/Overview_size.csv) | AxonFramework-4.8.3 | 2 | [Overview/Overview_size.cypher](./../cypher/Overview/Overview_size.cypher) | +| [Artifact_Similarity.csv](./AxonFramework/AxonFramework-4.8.3/similarity-csv/Artifact_Similarity.csv) | AxonFramework-4.8.3 | 16 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Package_Similarity.csv](./AxonFramework/AxonFramework-4.8.3/similarity-csv/Package_Similarity.csv) | AxonFramework-4.8.3 | 237 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Type_Similarity.csv](./AxonFramework/AxonFramework-4.8.3/similarity-csv/Type_Similarity.csv) | AxonFramework-4.8.3 | 3070 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Artifact_Topological_Sort.csv](./AxonFramework/AxonFramework-4.8.3/topology-csv/Artifact_Topological_Sort.csv) | AxonFramework-4.8.3 | 7 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Package_Topological_Sort.csv](./AxonFramework/AxonFramework-4.8.3/topology-csv/Package_Topological_Sort.csv) | AxonFramework-4.8.3 | 53 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Type_Topological_Sort.csv](./AxonFramework/AxonFramework-4.8.3/topology-csv/Type_Topological_Sort.csv) | AxonFramework-4.8.3 | 167 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerArtifact.csv](./AxonFramework/AxonFramework-4.8.3/visibility-metrics-csv/RelativeVisibilityPerArtifact.csv) | AxonFramework-4.8.3 | 7 | [Visibility/Global_relative_visibility_statistics_for_types.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_types.cypher) | +| [RelativeVisibilityPerPackage.csv](./AxonFramework/AxonFramework-4.8.3/visibility-metrics-csv/RelativeVisibilityPerPackage.csv) | AxonFramework-4.8.3 | 94 | [Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher](./../cypher/Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher) | +| [DependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.9.3/artifact-dependencies-csv/DependenciesAcrossArtifacts.csv) | AxonFramework-4.9.3 | 10 | [Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher](./../cypher/Artifact_Dependencies/Artifacts_with_dependencies_to_other_artifacts.cypher) | +| [InternalArtifactUsageSpreadPerDependency.csv](./AxonFramework/AxonFramework-4.9.3/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependency.csv) | AxonFramework-4.9.3 | 5 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependencies.cypher) | +| [InternalArtifactUsageSpreadPerDependent.csv](./AxonFramework/AxonFramework-4.9.3/artifact-dependencies-csv/InternalArtifactUsageSpreadPerDependent.csv) | AxonFramework-4.9.3 | 7 | [Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher](./../cypher/Artifact_Dependencies/Usage_and_spread_of_internal_artifact_dependents.cypher) | +| [MostUsedDependenciesAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.9.3/artifact-dependencies-csv/MostUsedDependenciesAcrossArtifacts.csv) | AxonFramework-4.9.3 | 5 | [Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher](./../cypher/Artifact_Dependencies/Most_used_internal_dependencies_acreoss_artifacts.cypher) | +| [Artifact_Centrality_All.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Artifact_Centrality_All.csv) | AxonFramework-4.9.3 | 7 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Artifact_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Artifact_Centrality_Article_Rank.csv) | AxonFramework-4.9.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Artifact_Centrality_Betweeness.csv) | AxonFramework-4.9.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Artifact_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.9.3 | 7 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Artifact_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Artifact_Centrality_Page_Rank.csv) | AxonFramework-4.9.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Artifact_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.9.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Artifact_Harmonic_Closeness.csv) | AxonFramework-4.9.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Method_Centrality_Article_Rank.csv) | AxonFramework-4.9.3 | 1064 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Method_Centrality_Betweeness.csv) | AxonFramework-4.9.3 | 1049 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Method_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.9.3 | 1120 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Method_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Method_Centrality_Page_Rank.csv) | AxonFramework-4.9.3 | 1062 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Method_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.9.3 | 1015 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Method_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Method_Harmonic_Closeness.csv) | AxonFramework-4.9.3 | 1049 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_All.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Package_Centrality_All.csv) | AxonFramework-4.9.3 | 94 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Package_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Package_Centrality_Article_Rank.csv) | AxonFramework-4.9.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Package_Centrality_Betweeness.csv) | AxonFramework-4.9.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Package_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.9.3 | 94 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Package_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Package_Centrality_Page_Rank.csv) | AxonFramework-4.9.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Package_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.9.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Package_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Package_Harmonic_Closeness.csv) | AxonFramework-4.9.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_All.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Type_Centrality_All.csv) | AxonFramework-4.9.3 | 1207 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Type_Centrality_Article_Rank.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Type_Centrality_Article_Rank.csv) | AxonFramework-4.9.3 | 1207 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Betweeness.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Type_Centrality_Betweeness.csv) | AxonFramework-4.9.3 | 1207 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Type_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | AxonFramework-4.9.3 | 1207 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Type_Centrality_Page_Rank.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Type_Centrality_Page_Rank.csv) | AxonFramework-4.9.3 | 1207 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Cost_Effective_Lazy_Forward_CELF.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Type_Cost_Effective_Lazy_Forward_CELF.csv) | AxonFramework-4.9.3 | 1207 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Type_Harmonic_Closeness.csv](./AxonFramework/AxonFramework-4.9.3/centrality-csv/Type_Harmonic_Closeness.csv) | AxonFramework-4.9.3 | 1207 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Artifact_All_Communities.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_All_Communities.csv) | AxonFramework-4.9.3 | 7 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Artifact_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.9.3 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_Communities_K_Core_Decomposition.csv) | AxonFramework-4.9.3 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_Communities_Label_Propagation.csv) | AxonFramework-4.9.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_Communities_Local_Clustering_Coefficient_Aggregated.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_Communities_Local_Clustering_Coefficient_Aggregated.csv) | AxonFramework-4.9.3 | 3 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Artifact_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_Communities_Louvain.csv) | AxonFramework-4.9.3 | 2 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Artifact_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.9.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Artifact_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.9.3 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.9.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.9.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.9.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.9.3 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Artifact_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.9.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_All_Communities.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_All_Communities.csv) | AxonFramework-4.9.3 | 94 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Package_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.9.3 | 21 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_Communities_K_Core_Decomposition.csv) | AxonFramework-4.9.3 | 10 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_Communities_Label_Propagation.csv) | AxonFramework-4.9.3 | 14 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_Communities_Local_Clustering_Coefficient_Aggregated.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_Communities_Local_Clustering_Coefficient_Aggregated.csv) | AxonFramework-4.9.3 | 35 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Package_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_Communities_Louvain.csv) | AxonFramework-4.9.3 | 19 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Package_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.9.3 | 9 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Package_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.9.3 | 10 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.9.3 | 14 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.9.3 | 13 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.9.3 | 13 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.9.3 | 21 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Package_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Package_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.9.3 | 9 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_All_Communities.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_All_Communities.csv) | AxonFramework-4.9.3 | 1207 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Type_Communities_Approximate_Maximum_K_Cut.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_Communities_Approximate_Maximum_K_Cut.csv) | AxonFramework-4.9.3 | 101 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_K_Core_Decomposition.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_Communities_K_Core_Decomposition.csv) | AxonFramework-4.9.3 | 11 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_Label_Propagation.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_Communities_Label_Propagation.csv) | AxonFramework-4.9.3 | 106 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_Communities_Leiden_That_Span_Multiple_Artifacts.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_Communities_Leiden_That_Span_Multiple_Artifacts.csv) | AxonFramework-4.9.3 | 13 | [Community_Detection/Which_type_community_spans_several_artifacts_and_how_are_the_types_distributed.cypher](./../cypher/Community_Detection/Which_type_community_spans_several_artifacts_and_how_are_the_types_distributed.cypher) | +| [Type_Communities_Local_Clustering_Coefficient_Aggregated.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_Communities_Local_Clustering_Coefficient_Aggregated.csv) | AxonFramework-4.9.3 | 74 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Type_Communities_Louvain.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_Communities_Louvain.csv) | AxonFramework-4.9.3 | 177 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Type_Communities_Weakly_Connected_Components.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_Communities_Weakly_Connected_Components.csv) | AxonFramework-4.9.3 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Type_communities_that_span_the_most_packages_with_type_statistics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_communities_that_span_the_most_packages_with_type_statistics.csv) | AxonFramework-4.9.3 | 44 | [Community_Detection/Type_communities_that_span_the_most_packages_with_type_statistics.cypher](./../cypher/Community_Detection/Type_communities_that_span_the_most_packages_with_type_statistics.cypher) | +| [Type_communities_with_few_members_in_foreign_packages.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_communities_with_few_members_in_foreign_packages.csv) | AxonFramework-4.9.3 | 162 | [Community_Detection/Type_communities_with_few_members_in_foreign_packages.cypher](./../cypher/Community_Detection/Type_communities_with_few_members_in_foreign_packages.cypher) | +| [Type_communityKCoreDecompositionValue_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_communityKCoreDecompositionValue_Community__Metrics.csv) | AxonFramework-4.9.3 | 11 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLabelPropagationId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_communityLabelPropagationId_Community__Metrics.csv) | AxonFramework-4.9.3 | 106 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLeidenId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_communityLeidenId_Community__Metrics.csv) | AxonFramework-4.9.3 | 15 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityLouvainId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_communityLouvainId_Community__Metrics.csv) | AxonFramework-4.9.3 | 17 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityMaximumKCutId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_communityMaximumKCutId_Community__Metrics.csv) | AxonFramework-4.9.3 | 101 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Type_communityWeaklyConnectedComponentId_Community__Metrics.csv](./AxonFramework/AxonFramework-4.9.3/community-csv/Type_communityWeaklyConnectedComponentId_Community__Metrics.csv) | AxonFramework-4.9.3 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_package_usage_overall.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_overall.csv) | AxonFramework-4.9.3 | 34 | [External_Dependencies/External_package_usage_overall.cypher](./../cypher/External_Dependencies/External_package_usage_overall.cypher) | +| [External_package_usage_per_artifact.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_per_artifact.csv) | AxonFramework-4.9.3 | 72 | [External_Dependencies/External_package_usage_per_artifact.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact.cypher) | +| [External_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.9.3 | 72 | [External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_external_package.cypher) | +| [External_package_usage_per_artifact_and_package.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_per_artifact_and_package.csv) | AxonFramework-4.9.3 | 136 | [External_Dependencies/External_package_usage_per_artifact_and_package.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_and_package.cypher) | +| [External_package_usage_per_artifact_distribution.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_per_artifact_distribution.csv) | AxonFramework-4.9.3 | 7 | [External_Dependencies/External_package_usage_per_artifact_distribution.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_distribution.cypher) | +| [External_package_usage_per_artifact_package_aggregated.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_per_artifact_package_aggregated.csv) | AxonFramework-4.9.3 | 7 | [External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_package_aggregated.cypher) | +| [External_package_usage_per_artifact_sorted_top.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_per_artifact_sorted_top.csv) | AxonFramework-4.9.3 | 7 | [External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher](./../cypher/External_Dependencies/External_package_usage_per_artifact_sorted_top.cypher) | +| [External_package_usage_per_type.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_per_type.csv) | AxonFramework-4.9.3 | 494 | [External_Dependencies/External_package_usage_per_type.cypher](./../cypher/External_Dependencies/External_package_usage_per_type.cypher) | +| [External_package_usage_spread.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_package_usage_spread.csv) | AxonFramework-4.9.3 | 56 | [External_Dependencies/External_package_usage_spread.cypher](./../cypher/External_Dependencies/External_package_usage_spread.cypher) | +| [External_second_level_package_usage_overall.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_second_level_package_usage_overall.csv) | AxonFramework-4.9.3 | 23 | [External_Dependencies/External_second_level_package_usage_overall.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_overall.cypher) | +| [External_second_level_package_usage_per_artifact_and_external_package.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_second_level_package_usage_per_artifact_and_external_package.csv) | AxonFramework-4.9.3 | 42 | [External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_per_artifact_and_external_package.cypher) | +| [External_second_level_package_usage_spread.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/External_second_level_package_usage_spread.csv) | AxonFramework-4.9.3 | 26 | [External_Dependencies/External_second_level_package_usage_spread.cypher](./../cypher/External_Dependencies/External_second_level_package_usage_spread.cypher) | +| [Maven_POM_dependencies.csv](./AxonFramework/AxonFramework-4.9.3/external-dependencies-csv/Maven_POM_dependencies.csv) | AxonFramework-4.9.3 | 117 | [External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher](./../cypher/External_Dependencies/Maven_POMs_and_their_declared_dependencies.cypher) | +| [ArtifactPackageUsage.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/ArtifactPackageUsage.csv) | AxonFramework-4.9.3 | 5 | [Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_packages_compared_to_all_existing_are_used_by_dependent_artifacts.cypher) | +| [ClassesPerPackageUsageAcrossArtifacts.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/ClassesPerPackageUsageAcrossArtifacts.csv) | AxonFramework-4.9.3 | 221 | [Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher](./../cypher/Internal_Dependencies/How_many_classes_compared_to_all_existing_in_the_same_package_are_used_by_dependent_packages_across_different_artifacts.cypher) | +| [Cyclic_Dependencies.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/Cyclic_Dependencies.csv) | AxonFramework-4.9.3 | 23 | [Cyclic_Dependencies/Cyclic_Dependencies.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies.cypher) | +| [Cyclic_Dependencies_Breakdown.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/Cyclic_Dependencies_Breakdown.csv) | AxonFramework-4.9.3 | 381 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown.cypher) | +| [Cyclic_Dependencies_Breakdown_Backward_Only.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/Cyclic_Dependencies_Breakdown_Backward_Only.csv) | AxonFramework-4.9.3 | 83 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only.cypher) | +| [Distance_distribution_between_dependent_files.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/Distance_distribution_between_dependent_files.csv) | AxonFramework-4.9.3 | 4 | [Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher](./../cypher/Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher) | +| [InterfaceSegregationCandidates.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/InterfaceSegregationCandidates.csv) | AxonFramework-4.9.3 | 230 | [Internal_Dependencies/Candidates_for_Interface_Segregation.cypher](./../cypher/Internal_Dependencies/Candidates_for_Interface_Segregation.cypher) | +| [List_all_Java_artifacts.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/List_all_Java_artifacts.csv) | AxonFramework-4.9.3 | 7 | [Internal_Dependencies/List_all_Java_artifacts.cypher](./../cypher/Internal_Dependencies/List_all_Java_artifacts.cypher) | +| [WidelyUsedTypes.csv](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-csv/WidelyUsedTypes.csv) | AxonFramework-4.9.3 | 506 | [Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher](./../cypher/Internal_Dependencies/List_types_that_are_used_by_many_different_packages.cypher) | +| [AnnotatedCodeElements.csv](./AxonFramework/AxonFramework-4.9.3/java-csv/AnnotatedCodeElements.csv) | AxonFramework-4.9.3 | 57 | [Java/Annotated_code_elements.cypher](./../cypher/Java/Annotated_code_elements.cypher) | +| [AnnotatedCodeElementsPerArtifact.csv](./AxonFramework/AxonFramework-4.9.3/java-csv/AnnotatedCodeElementsPerArtifact.csv) | AxonFramework-4.9.3 | 127 | [Java/Annotated_code_elements_per_artifact.cypher](./../cypher/Java/Annotated_code_elements_per_artifact.cypher) | +| [DeprecatedElementUsage.csv](./AxonFramework/AxonFramework-4.9.3/java-csv/DeprecatedElementUsage.csv) | AxonFramework-4.9.3 | 12 | [Java/Java_deprecated_element_usage.cypher](./../cypher/Java/Java_deprecated_element_usage.cypher) | +| [DeprecatedElementUsageDetailed.csv](./AxonFramework/AxonFramework-4.9.3/java-csv/DeprecatedElementUsageDetailed.csv) | AxonFramework-4.9.3 | 57 | [Java/Java_deprecated_element_usage_detailed.cypher](./../cypher/Java/Java_deprecated_element_usage_detailed.cypher) | +| [ReflectionUsage.csv](./AxonFramework/AxonFramework-4.9.3/java-csv/ReflectionUsage.csv) | AxonFramework-4.9.3 | 7 | [Java/Java_Reflection_usage.cypher](./../cypher/Java/Java_Reflection_usage.cypher) | +| [ReflectionUsageDetailed.csv](./AxonFramework/AxonFramework-4.9.3/java-csv/ReflectionUsageDetailed.csv) | AxonFramework-4.9.3 | 105 | [Java/Java_Reflection_usage_detailed.cypher](./../cypher/Java/Java_Reflection_usage_detailed.cypher) | +| [Artifact_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Artifact_Embeddings_HashGNN.csv) | AxonFramework-4.9.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Artifact_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.9.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Artifact_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Artifact_Embeddings_Node2Vec.csv) | AxonFramework-4.9.3 | 7 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Package_Embeddings_HashGNN.csv) | AxonFramework-4.9.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Package_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.9.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Package_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Package_Embeddings_Node2Vec.csv) | AxonFramework-4.9.3 | 94 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_HashGNN.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Type_Embeddings_HashGNN.csv) | AxonFramework-4.9.3 | 1207 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_Label_Random_Projection.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Type_Embeddings_Label_Random_Projection.csv) | AxonFramework-4.9.3 | 1207 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Type_Embeddings_Node2Vec.csv](./AxonFramework/AxonFramework-4.9.3/node-embeddings-csv/Type_Embeddings_Node2Vec.csv) | AxonFramework-4.9.3 | 1207 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/AbstractnessIncludingSubpackagesJava.csv) | AxonFramework-4.9.3 | 94 | [Metrics/Calculate_and_set_Abstractness_for_Java_including_Subpackages.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Java_including_Subpackages.cypher) | +| [AbstractnessJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/AbstractnessJava.csv) | AxonFramework-4.9.3 | 108 | [Metrics/Calculate_and_set_Abstractness_for_Java.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Java.cypher) | +| [IncomingPackageDependenciesIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/IncomingPackageDependenciesIncludingSubpackagesJava.csv) | AxonFramework-4.9.3 | 93 | [Metrics/Set_Incoming_Java_Package_Dependencies_Including_Subpackages.cypher](./../cypher/Metrics/Set_Incoming_Java_Package_Dependencies_Including_Subpackages.cypher) | +| [IncomingPackageDependenciesJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/IncomingPackageDependenciesJava.csv) | AxonFramework-4.9.3 | 107 | [Metrics/Get_Incoming_Java_Package_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Java_Package_Dependencies.cypher) | +| [InstabilityIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/InstabilityIncludingSubpackagesJava.csv) | AxonFramework-4.9.3 | 63 | [Metrics/Calculate_and_set_Instability_for_Java_Including_Subpackages.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Java_Including_Subpackages.cypher) | +| [InstabilityJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/InstabilityJava.csv) | AxonFramework-4.9.3 | 90 | [Metrics/Calculate_and_set_Instability_for_Java.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Java.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceIncludingSubpackagesJava.csv) | AxonFramework-4.9.3 | 63 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Java_including_subpackages.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Java_including_subpackages.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceJava.csv) | AxonFramework-4.9.3 | 108 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Java.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Java.cypher) | +| [OutgoingPackageDependenciesIncludingSubpackagesJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/OutgoingPackageDependenciesIncludingSubpackagesJava.csv) | AxonFramework-4.9.3 | 93 | [Metrics/Set_Outgoing_Java_Package_Dependencies_Including_Subpackages.cypher](./../cypher/Metrics/Set_Outgoing_Java_Package_Dependencies_Including_Subpackages.cypher) | +| [OutgoingPackageDependenciesJava.csv](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-csv/OutgoingPackageDependenciesJava.csv) | AxonFramework-4.9.3 | 107 | [Metrics/Get_Outgoing_Java_Package_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Java_Package_Dependencies.cypher) | +| [Cyclomatic_Method_Complexity.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Cyclomatic_Method_Complexity.csv) | AxonFramework-4.9.3 | 66 | [Overview/Cyclomatic_Method_Complexity_Distribution.cypher](./../cypher/Overview/Cyclomatic_Method_Complexity_Distribution.cypher) | +| [Effective_Method_Line_Count.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Effective_Method_Line_Count.csv) | AxonFramework-4.9.3 | 154 | [Overview/Effective_Method_Line_Count_Distribution.cypher](./../cypher/Overview/Effective_Method_Line_Count_Distribution.cypher) | +| [Effective_lines_of_method_code_per_package.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Effective_lines_of_method_code_per_package.csv) | AxonFramework-4.9.3 | 94 | [Overview/Effective_lines_of_method_code_per_package.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_package.cypher) | +| [Effective_lines_of_method_code_per_type.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Effective_lines_of_method_code_per_type.csv) | AxonFramework-4.9.3 | 984 | [Overview/Effective_lines_of_method_code_per_type.cypher](./../cypher/Overview/Effective_lines_of_method_code_per_type.cypher) | +| [Node_label_combination_count.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Node_label_combination_count.csv) | AxonFramework-4.9.3 | 57 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Node_label_count.csv) | AxonFramework-4.9.3 | 66 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_packages_per_artifact.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Number_of_packages_per_artifact.csv) | AxonFramework-4.9.3 | 7 | [Overview/Number_of_packages_per_artifact.cypher](./../cypher/Overview/Number_of_packages_per_artifact.cypher) | +| [Number_of_types_per_artifact.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Number_of_types_per_artifact.csv) | AxonFramework-4.9.3 | 20 | [Overview/Number_of_types_per_artifact.cypher](./../cypher/Overview/Number_of_types_per_artifact.cypher) | +| [Overview_size.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Overview_size.csv) | AxonFramework-4.9.3 | 2 | [Overview/Overview_size.cypher](./../cypher/Overview/Overview_size.cypher) | +| [Relationship_type_count.csv](./AxonFramework/AxonFramework-4.9.3/overview-csv/Relationship_type_count.csv) | AxonFramework-4.9.3 | 56 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [Artifact_Similarity.csv](./AxonFramework/AxonFramework-4.9.3/similarity-csv/Artifact_Similarity.csv) | AxonFramework-4.9.3 | 16 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Package_Similarity.csv](./AxonFramework/AxonFramework-4.9.3/similarity-csv/Package_Similarity.csv) | AxonFramework-4.9.3 | 237 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Type_Similarity.csv](./AxonFramework/AxonFramework-4.9.3/similarity-csv/Type_Similarity.csv) | AxonFramework-4.9.3 | 3166 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Artifact_Topological_Sort.csv](./AxonFramework/AxonFramework-4.9.3/topology-csv/Artifact_Topological_Sort.csv) | AxonFramework-4.9.3 | 7 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Package_Topological_Sort.csv](./AxonFramework/AxonFramework-4.9.3/topology-csv/Package_Topological_Sort.csv) | AxonFramework-4.9.3 | 53 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Type_Topological_Sort.csv](./AxonFramework/AxonFramework-4.9.3/topology-csv/Type_Topological_Sort.csv) | AxonFramework-4.9.3 | 167 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerArtifact.csv](./AxonFramework/AxonFramework-4.9.3/visibility-metrics-csv/RelativeVisibilityPerArtifact.csv) | AxonFramework-4.9.3 | 7 | [Visibility/Global_relative_visibility_statistics_for_types.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_types.cypher) | +| [RelativeVisibilityPerPackage.csv](./AxonFramework/AxonFramework-4.9.3/visibility-metrics-csv/RelativeVisibilityPerPackage.csv) | AxonFramework-4.9.3 | 94 | [Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher](./../cypher/Visibility/Relative_visibility_public_types_to_all_types_per_package.cypher) | +| [AbstractnessTypescript.csv](./react-router/react-router-6.22.0/object-oriented-design-metrics-csv/AbstractnessTypescript.csv) | react-router-6.22.0 | 7 | [Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher) | +| [IncomingPackageDependenciesTypescript.csv](./react-router/react-router-6.22.0/object-oriented-design-metrics-csv/IncomingPackageDependenciesTypescript.csv) | react-router-6.22.0 | 6 | [Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher) | +| [InstabilityTypescript.csv](./react-router/react-router-6.22.0/object-oriented-design-metrics-csv/InstabilityTypescript.csv) | react-router-6.22.0 | 7 | [Metrics/Calculate_and_set_Instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Typescript.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceTypescript.csv](./react-router/react-router-6.22.0/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceTypescript.csv) | react-router-6.22.0 | 7 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher) | +| [OutgoingPackageDependenciesTypescript.csv](./react-router/react-router-6.22.0/object-oriented-design-metrics-csv/OutgoingPackageDependenciesTypescript.csv) | react-router-6.22.0 | 6 | [Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher) | +| [Module_Centrality_All.csv](./react-router/react-router-6.23.1/centrality-csv/Module_Centrality_All.csv) | react-router-6.23.1 | 6 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Module_Centrality_Article_Rank.csv](./react-router/react-router-6.23.1/centrality-csv/Module_Centrality_Article_Rank.csv) | react-router-6.23.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Betweeness.csv](./react-router/react-router-6.23.1/centrality-csv/Module_Centrality_Betweeness.csv) | react-router-6.23.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./react-router/react-router-6.23.1/centrality-csv/Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | react-router-6.23.1 | 6 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Module_Centrality_Page_Rank.csv](./react-router/react-router-6.23.1/centrality-csv/Module_Centrality_Page_Rank.csv) | react-router-6.23.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Cost_Effective_Lazy_Forward_CELF.csv](./react-router/react-router-6.23.1/centrality-csv/Module_Cost_Effective_Lazy_Forward_CELF.csv) | react-router-6.23.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Harmonic_Closeness.csv](./react-router/react-router-6.23.1/centrality-csv/Module_Harmonic_Closeness.csv) | react-router-6.23.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_All_Communities.csv](./react-router/react-router-6.23.1/community-csv/Module_All_Communities.csv) | react-router-6.23.1 | 6 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Module_Communities_Approximate_Maximum_K_Cut.csv](./react-router/react-router-6.23.1/community-csv/Module_Communities_Approximate_Maximum_K_Cut.csv) | react-router-6.23.1 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_K_Core_Decomposition.csv](./react-router/react-router-6.23.1/community-csv/Module_Communities_K_Core_Decomposition.csv) | react-router-6.23.1 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Label_Propagation.csv](./react-router/react-router-6.23.1/community-csv/Module_Communities_Label_Propagation.csv) | react-router-6.23.1 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Louvain.csv](./react-router/react-router-6.23.1/community-csv/Module_Communities_Louvain.csv) | react-router-6.23.1 | 3 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Module_Communities_Weakly_Connected_Components.csv](./react-router/react-router-6.23.1/community-csv/Module_Communities_Weakly_Connected_Components.csv) | react-router-6.23.1 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_communityKCoreDecompositionValue_Community__Metrics.csv](./react-router/react-router-6.23.1/community-csv/Module_communityKCoreDecompositionValue_Community__Metrics.csv) | react-router-6.23.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLabelPropagationId_Community__Metrics.csv](./react-router/react-router-6.23.1/community-csv/Module_communityLabelPropagationId_Community__Metrics.csv) | react-router-6.23.1 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLeidenId_Community__Metrics.csv](./react-router/react-router-6.23.1/community-csv/Module_communityLeidenId_Community__Metrics.csv) | react-router-6.23.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLouvainId_Community__Metrics.csv](./react-router/react-router-6.23.1/community-csv/Module_communityLouvainId_Community__Metrics.csv) | react-router-6.23.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityMaximumKCutId_Community__Metrics.csv](./react-router/react-router-6.23.1/community-csv/Module_communityMaximumKCutId_Community__Metrics.csv) | react-router-6.23.1 | 5 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityWeaklyConnectedComponentId_Community__Metrics.csv](./react-router/react-router-6.23.1/community-csv/Module_communityWeaklyConnectedComponentId_Community__Metrics.csv) | react-router-6.23.1 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_module_usage_overall_for_Typescript.csv](./react-router/react-router-6.23.1/external-dependencies-csv/External_module_usage_overall_for_Typescript.csv) | react-router-6.23.1 | 4 | [External_Dependencies/External_module_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_overall_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_aggregated_for_Typescript.csv](./react-router/react-router-6.23.1/external-dependencies-csv/External_module_usage_per_internal_module_aggregated_for_Typescript.csv) | react-router-6.23.1 | 5 | [External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_distribution_for_Typescript.csv](./react-router/react-router-6.23.1/external-dependencies-csv/External_module_usage_per_internal_module_distribution_for_Typescript.csv) | react-router-6.23.1 | 5 | [External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.23.1/external-dependencies-csv/External_module_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.23.1 | 7 | [External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_module_usage_spread_for_Typescript.csv](./react-router/react-router-6.23.1/external-dependencies-csv/External_module_usage_spread_for_Typescript.csv) | react-router-6.23.1 | 4 | [External_Dependencies/External_module_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_spread_for_Typescript.cypher) | +| [External_namespace_usage_overall_for_Typescript.csv](./react-router/react-router-6.23.1/external-dependencies-csv/External_namespace_usage_overall_for_Typescript.csv) | react-router-6.23.1 | 3 | [External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher) | +| [External_namespace_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.23.1/external-dependencies-csv/External_namespace_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.23.1 | 6 | [External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_namespace_usage_spread_for_Typescript.csv](./react-router/react-router-6.23.1/external-dependencies-csv/External_namespace_usage_spread_for_Typescript.csv) | react-router-6.23.1 | 3 | [External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher) | +| [Module_Embeddings_HashGNN.csv](./react-router/react-router-6.23.1/node-embeddings-csv/Module_Embeddings_HashGNN.csv) | react-router-6.23.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Label_Random_Projection.csv](./react-router/react-router-6.23.1/node-embeddings-csv/Module_Embeddings_Label_Random_Projection.csv) | react-router-6.23.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Node2Vec.csv](./react-router/react-router-6.23.1/node-embeddings-csv/Module_Embeddings_Node2Vec.csv) | react-router-6.23.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessTypescript.csv](./react-router/react-router-6.23.1/object-oriented-design-metrics-csv/AbstractnessTypescript.csv) | react-router-6.23.1 | 7 | [Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher) | +| [IncomingPackageDependenciesTypescript.csv](./react-router/react-router-6.23.1/object-oriented-design-metrics-csv/IncomingPackageDependenciesTypescript.csv) | react-router-6.23.1 | 6 | [Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher) | +| [InstabilityTypescript.csv](./react-router/react-router-6.23.1/object-oriented-design-metrics-csv/InstabilityTypescript.csv) | react-router-6.23.1 | 7 | [Metrics/Calculate_and_set_Instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Typescript.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceTypescript.csv](./react-router/react-router-6.23.1/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceTypescript.csv) | react-router-6.23.1 | 7 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher) | +| [OutgoingPackageDependenciesTypescript.csv](./react-router/react-router-6.23.1/object-oriented-design-metrics-csv/OutgoingPackageDependenciesTypescript.csv) | react-router-6.23.1 | 6 | [Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher) | +| [Module_Similarity.csv](./react-router/react-router-6.23.1/similarity-csv/Module_Similarity.csv) | react-router-6.23.1 | 11 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Module_Topological_Sort.csv](./react-router/react-router-6.23.1/topology-csv/Module_Topological_Sort.csv) | react-router-6.23.1 | 6 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [Module_Centrality_All.csv](./react-router/react-router-6.24.1/centrality-csv/Module_Centrality_All.csv) | react-router-6.24.1 | 6 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Module_Centrality_Article_Rank.csv](./react-router/react-router-6.24.1/centrality-csv/Module_Centrality_Article_Rank.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Betweeness.csv](./react-router/react-router-6.24.1/centrality-csv/Module_Centrality_Betweeness.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./react-router/react-router-6.24.1/centrality-csv/Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | react-router-6.24.1 | 6 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Module_Centrality_Page_Rank.csv](./react-router/react-router-6.24.1/centrality-csv/Module_Centrality_Page_Rank.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Cost_Effective_Lazy_Forward_CELF.csv](./react-router/react-router-6.24.1/centrality-csv/Module_Cost_Effective_Lazy_Forward_CELF.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Harmonic_Closeness.csv](./react-router/react-router-6.24.1/centrality-csv/Module_Harmonic_Closeness.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_All_Communities.csv](./react-router/react-router-6.24.1/community-csv/Module_All_Communities.csv) | react-router-6.24.1 | 6 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Module_Communities_Approximate_Maximum_K_Cut.csv](./react-router/react-router-6.24.1/community-csv/Module_Communities_Approximate_Maximum_K_Cut.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_K_Core_Decomposition.csv](./react-router/react-router-6.24.1/community-csv/Module_Communities_K_Core_Decomposition.csv) | react-router-6.24.1 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Label_Propagation.csv](./react-router/react-router-6.24.1/community-csv/Module_Communities_Label_Propagation.csv) | react-router-6.24.1 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Local_Clustering_Coefficient_Aggregated.csv](./react-router/react-router-6.24.1/community-csv/Module_Communities_Local_Clustering_Coefficient_Aggregated.csv) | react-router-6.24.1 | 4 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Module_Communities_Louvain.csv](./react-router/react-router-6.24.1/community-csv/Module_Communities_Louvain.csv) | react-router-6.24.1 | 3 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Module_Communities_Weakly_Connected_Components.csv](./react-router/react-router-6.24.1/community-csv/Module_Communities_Weakly_Connected_Components.csv) | react-router-6.24.1 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_communityKCoreDecompositionValue_Community__Metrics.csv](./react-router/react-router-6.24.1/community-csv/Module_communityKCoreDecompositionValue_Community__Metrics.csv) | react-router-6.24.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLabelPropagationId_Community__Metrics.csv](./react-router/react-router-6.24.1/community-csv/Module_communityLabelPropagationId_Community__Metrics.csv) | react-router-6.24.1 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLeidenId_Community__Metrics.csv](./react-router/react-router-6.24.1/community-csv/Module_communityLeidenId_Community__Metrics.csv) | react-router-6.24.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLouvainId_Community__Metrics.csv](./react-router/react-router-6.24.1/community-csv/Module_communityLouvainId_Community__Metrics.csv) | react-router-6.24.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityMaximumKCutId_Community__Metrics.csv](./react-router/react-router-6.24.1/community-csv/Module_communityMaximumKCutId_Community__Metrics.csv) | react-router-6.24.1 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityWeaklyConnectedComponentId_Community__Metrics.csv](./react-router/react-router-6.24.1/community-csv/Module_communityWeaklyConnectedComponentId_Community__Metrics.csv) | react-router-6.24.1 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_module_usage_overall_for_Typescript.csv](./react-router/react-router-6.24.1/external-dependencies-csv/External_module_usage_overall_for_Typescript.csv) | react-router-6.24.1 | 4 | [External_Dependencies/External_module_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_overall_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_aggregated_for_Typescript.csv](./react-router/react-router-6.24.1/external-dependencies-csv/External_module_usage_per_internal_module_aggregated_for_Typescript.csv) | react-router-6.24.1 | 5 | [External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_distribution_for_Typescript.csv](./react-router/react-router-6.24.1/external-dependencies-csv/External_module_usage_per_internal_module_distribution_for_Typescript.csv) | react-router-6.24.1 | 5 | [External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.24.1/external-dependencies-csv/External_module_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.24.1 | 7 | [External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_module_usage_spread_for_Typescript.csv](./react-router/react-router-6.24.1/external-dependencies-csv/External_module_usage_spread_for_Typescript.csv) | react-router-6.24.1 | 4 | [External_Dependencies/External_module_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_spread_for_Typescript.cypher) | +| [External_namespace_usage_overall_for_Typescript.csv](./react-router/react-router-6.24.1/external-dependencies-csv/External_namespace_usage_overall_for_Typescript.csv) | react-router-6.24.1 | 3 | [External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher) | +| [External_namespace_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.24.1/external-dependencies-csv/External_namespace_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.24.1 | 6 | [External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_namespace_usage_spread_for_Typescript.csv](./react-router/react-router-6.24.1/external-dependencies-csv/External_namespace_usage_spread_for_Typescript.csv) | react-router-6.24.1 | 3 | [External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher) | +| [List_all_Typescript_modules.csv](./react-router/react-router-6.24.1/internal-dependencies-csv/List_all_Typescript_modules.csv) | react-router-6.24.1 | 5 | [Internal_Dependencies/List_all_Typescript_modules.cypher](./../cypher/Internal_Dependencies/List_all_Typescript_modules.cypher) | +| [Module_Embeddings_HashGNN.csv](./react-router/react-router-6.24.1/node-embeddings-csv/Module_Embeddings_HashGNN.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Label_Random_Projection.csv](./react-router/react-router-6.24.1/node-embeddings-csv/Module_Embeddings_Label_Random_Projection.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Node2Vec.csv](./react-router/react-router-6.24.1/node-embeddings-csv/Module_Embeddings_Node2Vec.csv) | react-router-6.24.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessTypescript.csv](./react-router/react-router-6.24.1/object-oriented-design-metrics-csv/AbstractnessTypescript.csv) | react-router-6.24.1 | 7 | [Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher) | +| [IncomingPackageDependenciesTypescript.csv](./react-router/react-router-6.24.1/object-oriented-design-metrics-csv/IncomingPackageDependenciesTypescript.csv) | react-router-6.24.1 | 6 | [Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher) | +| [InstabilityTypescript.csv](./react-router/react-router-6.24.1/object-oriented-design-metrics-csv/InstabilityTypescript.csv) | react-router-6.24.1 | 7 | [Metrics/Calculate_and_set_Instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Typescript.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceTypescript.csv](./react-router/react-router-6.24.1/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceTypescript.csv) | react-router-6.24.1 | 7 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher) | +| [OutgoingPackageDependenciesTypescript.csv](./react-router/react-router-6.24.1/object-oriented-design-metrics-csv/OutgoingPackageDependenciesTypescript.csv) | react-router-6.24.1 | 6 | [Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher) | +| [Node_label_combination_count.csv](./react-router/react-router-6.24.1/overview-csv/Node_label_combination_count.csv) | react-router-6.24.1 | 48 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./react-router/react-router-6.24.1/overview-csv/Node_label_count.csv) | react-router-6.24.1 | 49 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_elements_per_module_for_Typescript.csv](./react-router/react-router-6.24.1/overview-csv/Number_of_elements_per_module_for_Typescript.csv) | react-router-6.24.1 | 13 | [Overview/Number_of_elements_per_module_for_Typescript.cypher](./../cypher/Overview/Number_of_elements_per_module_for_Typescript.cypher) | +| [Relationship_type_count.csv](./react-router/react-router-6.24.1/overview-csv/Relationship_type_count.csv) | react-router-6.24.1 | 32 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [Module_Similarity.csv](./react-router/react-router-6.24.1/similarity-csv/Module_Similarity.csv) | react-router-6.24.1 | 11 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Module_Topological_Sort.csv](./react-router/react-router-6.24.1/topology-csv/Module_Topological_Sort.csv) | react-router-6.24.1 | 6 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerTypescriptModule.csv](./react-router/react-router-6.24.1/visibility-metrics-csv/RelativeVisibilityPerTypescriptModule.csv) | react-router-6.24.1 | 5 | [Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher](./../cypher/Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher) | +| [RelativeVisibilityPerTypescriptProject.csv](./react-router/react-router-6.24.1/visibility-metrics-csv/RelativeVisibilityPerTypescriptProject.csv) | react-router-6.24.1 | 4 | [Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher) | +| [Module_Centrality_All.csv](./react-router/react-router-6.25.1/centrality-csv/Module_Centrality_All.csv) | react-router-6.25.1 | 6 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Module_Centrality_Article_Rank.csv](./react-router/react-router-6.25.1/centrality-csv/Module_Centrality_Article_Rank.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Betweeness.csv](./react-router/react-router-6.25.1/centrality-csv/Module_Centrality_Betweeness.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./react-router/react-router-6.25.1/centrality-csv/Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | react-router-6.25.1 | 6 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Module_Centrality_Page_Rank.csv](./react-router/react-router-6.25.1/centrality-csv/Module_Centrality_Page_Rank.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Cost_Effective_Lazy_Forward_CELF.csv](./react-router/react-router-6.25.1/centrality-csv/Module_Cost_Effective_Lazy_Forward_CELF.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Harmonic_Closeness.csv](./react-router/react-router-6.25.1/centrality-csv/Module_Harmonic_Closeness.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_All_Communities.csv](./react-router/react-router-6.25.1/community-csv/Module_All_Communities.csv) | react-router-6.25.1 | 6 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Module_Communities_Approximate_Maximum_K_Cut.csv](./react-router/react-router-6.25.1/community-csv/Module_Communities_Approximate_Maximum_K_Cut.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_K_Core_Decomposition.csv](./react-router/react-router-6.25.1/community-csv/Module_Communities_K_Core_Decomposition.csv) | react-router-6.25.1 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Label_Propagation.csv](./react-router/react-router-6.25.1/community-csv/Module_Communities_Label_Propagation.csv) | react-router-6.25.1 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Local_Clustering_Coefficient_Aggregated.csv](./react-router/react-router-6.25.1/community-csv/Module_Communities_Local_Clustering_Coefficient_Aggregated.csv) | react-router-6.25.1 | 4 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Module_Communities_Louvain.csv](./react-router/react-router-6.25.1/community-csv/Module_Communities_Louvain.csv) | react-router-6.25.1 | 3 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Module_Communities_Weakly_Connected_Components.csv](./react-router/react-router-6.25.1/community-csv/Module_Communities_Weakly_Connected_Components.csv) | react-router-6.25.1 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_communityKCoreDecompositionValue_Community__Metrics.csv](./react-router/react-router-6.25.1/community-csv/Module_communityKCoreDecompositionValue_Community__Metrics.csv) | react-router-6.25.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLabelPropagationId_Community__Metrics.csv](./react-router/react-router-6.25.1/community-csv/Module_communityLabelPropagationId_Community__Metrics.csv) | react-router-6.25.1 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLeidenId_Community__Metrics.csv](./react-router/react-router-6.25.1/community-csv/Module_communityLeidenId_Community__Metrics.csv) | react-router-6.25.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLouvainId_Community__Metrics.csv](./react-router/react-router-6.25.1/community-csv/Module_communityLouvainId_Community__Metrics.csv) | react-router-6.25.1 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityMaximumKCutId_Community__Metrics.csv](./react-router/react-router-6.25.1/community-csv/Module_communityMaximumKCutId_Community__Metrics.csv) | react-router-6.25.1 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityWeaklyConnectedComponentId_Community__Metrics.csv](./react-router/react-router-6.25.1/community-csv/Module_communityWeaklyConnectedComponentId_Community__Metrics.csv) | react-router-6.25.1 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_module_usage_overall_for_Typescript.csv](./react-router/react-router-6.25.1/external-dependencies-csv/External_module_usage_overall_for_Typescript.csv) | react-router-6.25.1 | 4 | [External_Dependencies/External_module_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_overall_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_aggregated_for_Typescript.csv](./react-router/react-router-6.25.1/external-dependencies-csv/External_module_usage_per_internal_module_aggregated_for_Typescript.csv) | react-router-6.25.1 | 5 | [External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_distribution_for_Typescript.csv](./react-router/react-router-6.25.1/external-dependencies-csv/External_module_usage_per_internal_module_distribution_for_Typescript.csv) | react-router-6.25.1 | 5 | [External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.25.1/external-dependencies-csv/External_module_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.25.1 | 7 | [External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_module_usage_spread_for_Typescript.csv](./react-router/react-router-6.25.1/external-dependencies-csv/External_module_usage_spread_for_Typescript.csv) | react-router-6.25.1 | 4 | [External_Dependencies/External_module_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_spread_for_Typescript.cypher) | +| [External_namespace_usage_overall_for_Typescript.csv](./react-router/react-router-6.25.1/external-dependencies-csv/External_namespace_usage_overall_for_Typescript.csv) | react-router-6.25.1 | 3 | [External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher) | +| [External_namespace_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.25.1/external-dependencies-csv/External_namespace_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.25.1 | 6 | [External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_namespace_usage_spread_for_Typescript.csv](./react-router/react-router-6.25.1/external-dependencies-csv/External_namespace_usage_spread_for_Typescript.csv) | react-router-6.25.1 | 3 | [External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher) | +| [Distance_distribution_between_dependent_files.csv](./react-router/react-router-6.25.1/internal-dependencies-csv/Distance_distribution_between_dependent_files.csv) | react-router-6.25.1 | 2 | [Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher](./../cypher/Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher) | +| [List_all_Typescript_modules.csv](./react-router/react-router-6.25.1/internal-dependencies-csv/List_all_Typescript_modules.csv) | react-router-6.25.1 | 5 | [Internal_Dependencies/List_all_Typescript_modules.cypher](./../cypher/Internal_Dependencies/List_all_Typescript_modules.cypher) | +| [Module_Embeddings_HashGNN.csv](./react-router/react-router-6.25.1/node-embeddings-csv/Module_Embeddings_HashGNN.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Label_Random_Projection.csv](./react-router/react-router-6.25.1/node-embeddings-csv/Module_Embeddings_Label_Random_Projection.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Node2Vec.csv](./react-router/react-router-6.25.1/node-embeddings-csv/Module_Embeddings_Node2Vec.csv) | react-router-6.25.1 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessTypescript.csv](./react-router/react-router-6.25.1/object-oriented-design-metrics-csv/AbstractnessTypescript.csv) | react-router-6.25.1 | 7 | [Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher) | +| [IncomingPackageDependenciesTypescript.csv](./react-router/react-router-6.25.1/object-oriented-design-metrics-csv/IncomingPackageDependenciesTypescript.csv) | react-router-6.25.1 | 6 | [Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher) | +| [InstabilityTypescript.csv](./react-router/react-router-6.25.1/object-oriented-design-metrics-csv/InstabilityTypescript.csv) | react-router-6.25.1 | 7 | [Metrics/Calculate_and_set_Instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Typescript.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceTypescript.csv](./react-router/react-router-6.25.1/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceTypescript.csv) | react-router-6.25.1 | 7 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher) | +| [OutgoingPackageDependenciesTypescript.csv](./react-router/react-router-6.25.1/object-oriented-design-metrics-csv/OutgoingPackageDependenciesTypescript.csv) | react-router-6.25.1 | 6 | [Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher) | +| [Node_label_combination_count.csv](./react-router/react-router-6.25.1/overview-csv/Node_label_combination_count.csv) | react-router-6.25.1 | 50 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./react-router/react-router-6.25.1/overview-csv/Node_label_count.csv) | react-router-6.25.1 | 52 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_elements_per_module_for_Typescript.csv](./react-router/react-router-6.25.1/overview-csv/Number_of_elements_per_module_for_Typescript.csv) | react-router-6.25.1 | 13 | [Overview/Number_of_elements_per_module_for_Typescript.cypher](./../cypher/Overview/Number_of_elements_per_module_for_Typescript.cypher) | +| [Relationship_type_count.csv](./react-router/react-router-6.25.1/overview-csv/Relationship_type_count.csv) | react-router-6.25.1 | 39 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [Module_Similarity.csv](./react-router/react-router-6.25.1/similarity-csv/Module_Similarity.csv) | react-router-6.25.1 | 11 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Module_Topological_Sort.csv](./react-router/react-router-6.25.1/topology-csv/Module_Topological_Sort.csv) | react-router-6.25.1 | 6 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerTypescriptModule.csv](./react-router/react-router-6.25.1/visibility-metrics-csv/RelativeVisibilityPerTypescriptModule.csv) | react-router-6.25.1 | 5 | [Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher](./../cypher/Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher) | +| [RelativeVisibilityPerTypescriptProject.csv](./react-router/react-router-6.25.1/visibility-metrics-csv/RelativeVisibilityPerTypescriptProject.csv) | react-router-6.25.1 | 4 | [Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher) | +| [Module_Centrality_All.csv](./react-router/react-router-6.26.2/centrality-csv/Module_Centrality_All.csv) | react-router-6.26.2 | 6 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Module_Centrality_Article_Rank.csv](./react-router/react-router-6.26.2/centrality-csv/Module_Centrality_Article_Rank.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Betweeness.csv](./react-router/react-router-6.26.2/centrality-csv/Module_Centrality_Betweeness.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./react-router/react-router-6.26.2/centrality-csv/Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | react-router-6.26.2 | 6 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Module_Centrality_Page_Rank.csv](./react-router/react-router-6.26.2/centrality-csv/Module_Centrality_Page_Rank.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Cost_Effective_Lazy_Forward_CELF.csv](./react-router/react-router-6.26.2/centrality-csv/Module_Cost_Effective_Lazy_Forward_CELF.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Harmonic_Closeness.csv](./react-router/react-router-6.26.2/centrality-csv/Module_Harmonic_Closeness.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_All_Communities.csv](./react-router/react-router-6.26.2/community-csv/Module_All_Communities.csv) | react-router-6.26.2 | 6 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Module_Communities_Approximate_Maximum_K_Cut.csv](./react-router/react-router-6.26.2/community-csv/Module_Communities_Approximate_Maximum_K_Cut.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_K_Core_Decomposition.csv](./react-router/react-router-6.26.2/community-csv/Module_Communities_K_Core_Decomposition.csv) | react-router-6.26.2 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Label_Propagation.csv](./react-router/react-router-6.26.2/community-csv/Module_Communities_Label_Propagation.csv) | react-router-6.26.2 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Local_Clustering_Coefficient_Aggregated.csv](./react-router/react-router-6.26.2/community-csv/Module_Communities_Local_Clustering_Coefficient_Aggregated.csv) | react-router-6.26.2 | 4 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Module_Communities_Louvain.csv](./react-router/react-router-6.26.2/community-csv/Module_Communities_Louvain.csv) | react-router-6.26.2 | 3 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Module_Communities_Weakly_Connected_Components.csv](./react-router/react-router-6.26.2/community-csv/Module_Communities_Weakly_Connected_Components.csv) | react-router-6.26.2 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_communityKCoreDecompositionValue_Community__Metrics.csv](./react-router/react-router-6.26.2/community-csv/Module_communityKCoreDecompositionValue_Community__Metrics.csv) | react-router-6.26.2 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLabelPropagationId_Community__Metrics.csv](./react-router/react-router-6.26.2/community-csv/Module_communityLabelPropagationId_Community__Metrics.csv) | react-router-6.26.2 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLeidenId_Community__Metrics.csv](./react-router/react-router-6.26.2/community-csv/Module_communityLeidenId_Community__Metrics.csv) | react-router-6.26.2 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLouvainId_Community__Metrics.csv](./react-router/react-router-6.26.2/community-csv/Module_communityLouvainId_Community__Metrics.csv) | react-router-6.26.2 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityMaximumKCutId_Community__Metrics.csv](./react-router/react-router-6.26.2/community-csv/Module_communityMaximumKCutId_Community__Metrics.csv) | react-router-6.26.2 | 6 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityWeaklyConnectedComponentId_Community__Metrics.csv](./react-router/react-router-6.26.2/community-csv/Module_communityWeaklyConnectedComponentId_Community__Metrics.csv) | react-router-6.26.2 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_module_usage_overall_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_module_usage_overall_for_Typescript.csv) | react-router-6.26.2 | 4 | [External_Dependencies/External_module_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_overall_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_aggregated_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_module_usage_per_internal_module_aggregated_for_Typescript.csv) | react-router-6.26.2 | 5 | [External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_distribution_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_module_usage_per_internal_module_distribution_for_Typescript.csv) | react-router-6.26.2 | 5 | [External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_module_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.26.2 | 7 | [External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_module_usage_spread_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_module_usage_spread_for_Typescript.csv) | react-router-6.26.2 | 4 | [External_Dependencies/External_module_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_spread_for_Typescript.cypher) | +| [External_modules_resolved_to_internal_ones_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_modules_resolved_to_internal_ones_for_Typescript.csv) | react-router-6.26.2 | 4 | [External_Dependencies/List_external_modules_resolved_to_internal_ones_for_Typescript.cypher](./../cypher/External_Dependencies/List_external_modules_resolved_to_internal_ones_for_Typescript.cypher) | +| [External_namespace_usage_overall_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_namespace_usage_overall_for_Typescript.csv) | react-router-6.26.2 | 3 | [External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher) | +| [External_namespace_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_namespace_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.26.2 | 6 | [External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_namespace_usage_spread_for_Typescript.csv](./react-router/react-router-6.26.2/external-dependencies-csv/External_namespace_usage_spread_for_Typescript.csv) | react-router-6.26.2 | 3 | [External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher) | +| [Package_json_dependencies_combinations.csv](./react-router/react-router-6.26.2/external-dependencies-csv/Package_json_dependencies_combinations.csv) | react-router-6.26.2 | 49 | [External_Dependencies/Package_json_dependencies_combinations.cypher](./../cypher/External_Dependencies/Package_json_dependencies_combinations.cypher) | +| [Package_json_dependencies_occurrence.csv](./react-router/react-router-6.26.2/external-dependencies-csv/Package_json_dependencies_occurrence.csv) | react-router-6.26.2 | 79 | [External_Dependencies/Package_json_dependencies_occurrence.cypher](./../cypher/External_Dependencies/Package_json_dependencies_occurrence.cypher) | +| [Distance_distribution_between_dependent_files.csv](./react-router/react-router-6.26.2/internal-dependencies-csv/Distance_distribution_between_dependent_files.csv) | react-router-6.26.2 | 2 | [Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher](./../cypher/Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher) | +| [List_all_Typescript_modules.csv](./react-router/react-router-6.26.2/internal-dependencies-csv/List_all_Typescript_modules.csv) | react-router-6.26.2 | 5 | [Internal_Dependencies/List_all_Typescript_modules.cypher](./../cypher/Internal_Dependencies/List_all_Typescript_modules.cypher) | +| [Module_Embeddings_HashGNN.csv](./react-router/react-router-6.26.2/node-embeddings-csv/Module_Embeddings_HashGNN.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Label_Random_Projection.csv](./react-router/react-router-6.26.2/node-embeddings-csv/Module_Embeddings_Label_Random_Projection.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Node2Vec.csv](./react-router/react-router-6.26.2/node-embeddings-csv/Module_Embeddings_Node2Vec.csv) | react-router-6.26.2 | 6 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessTypescript.csv](./react-router/react-router-6.26.2/object-oriented-design-metrics-csv/AbstractnessTypescript.csv) | react-router-6.26.2 | 7 | [Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher) | +| [IncomingPackageDependenciesTypescript.csv](./react-router/react-router-6.26.2/object-oriented-design-metrics-csv/IncomingPackageDependenciesTypescript.csv) | react-router-6.26.2 | 6 | [Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher) | +| [InstabilityTypescript.csv](./react-router/react-router-6.26.2/object-oriented-design-metrics-csv/InstabilityTypescript.csv) | react-router-6.26.2 | 7 | [Metrics/Calculate_and_set_Instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Typescript.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceTypescript.csv](./react-router/react-router-6.26.2/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceTypescript.csv) | react-router-6.26.2 | 7 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher) | +| [OutgoingPackageDependenciesTypescript.csv](./react-router/react-router-6.26.2/object-oriented-design-metrics-csv/OutgoingPackageDependenciesTypescript.csv) | react-router-6.26.2 | 6 | [Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher) | +| [Node_label_combination_count.csv](./react-router/react-router-6.26.2/overview-csv/Node_label_combination_count.csv) | react-router-6.26.2 | 58 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./react-router/react-router-6.26.2/overview-csv/Node_label_count.csv) | react-router-6.26.2 | 61 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_elements_per_module_for_Typescript.csv](./react-router/react-router-6.26.2/overview-csv/Number_of_elements_per_module_for_Typescript.csv) | react-router-6.26.2 | 13 | [Overview/Number_of_elements_per_module_for_Typescript.cypher](./../cypher/Overview/Number_of_elements_per_module_for_Typescript.cypher) | +| [Relationship_type_count.csv](./react-router/react-router-6.26.2/overview-csv/Relationship_type_count.csv) | react-router-6.26.2 | 48 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [Module_all_pairs_shortest_paths_distribution_per_project.csv](./react-router/react-router-6.26.2/path-finding-csv/Module_all_pairs_shortest_paths_distribution_per_project.csv) | react-router-6.26.2 | 6 | [Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher) | +| [Module_longest_paths_distribution.csv](./react-router/react-router-6.26.2/path-finding-csv/Module_longest_paths_distribution.csv) | react-router-6.26.2 | 4 | [Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher) | +| [Module_Similarity.csv](./react-router/react-router-6.26.2/similarity-csv/Module_Similarity.csv) | react-router-6.26.2 | 11 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Module_Topological_Sort.csv](./react-router/react-router-6.26.2/topology-csv/Module_Topological_Sort.csv) | react-router-6.26.2 | 6 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerTypescriptModule.csv](./react-router/react-router-6.26.2/visibility-metrics-csv/RelativeVisibilityPerTypescriptModule.csv) | react-router-6.26.2 | 5 | [Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher](./../cypher/Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher) | +| [RelativeVisibilityPerTypescriptProject.csv](./react-router/react-router-6.26.2/visibility-metrics-csv/RelativeVisibilityPerTypescriptProject.csv) | react-router-6.26.2 | 4 | [Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher) | +| [Module_Centrality_All.csv](./react-router/react-router-6.27.0/centrality-csv/Module_Centrality_All.csv) | react-router-6.27.0 | 5 | [Centrality/Centrality_10_Summary.cypher](./../cypher/Centrality/Centrality_10_Summary.cypher) | +| [Module_Centrality_Article_Rank.csv](./react-router/react-router-6.27.0/centrality-csv/Module_Centrality_Article_Rank.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Betweeness.csv](./react-router/react-router-6.27.0/centrality-csv/Module_Centrality_Betweeness.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./react-router/react-router-6.27.0/centrality-csv/Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | react-router-6.27.0 | 5 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Module_Centrality_Page_Rank.csv](./react-router/react-router-6.27.0/centrality-csv/Module_Centrality_Page_Rank.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Cost_Effective_Lazy_Forward_CELF.csv](./react-router/react-router-6.27.0/centrality-csv/Module_Cost_Effective_Lazy_Forward_CELF.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Harmonic_Closeness.csv](./react-router/react-router-6.27.0/centrality-csv/Module_Harmonic_Closeness.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_All_Communities.csv](./react-router/react-router-6.27.0/community-csv/Module_All_Communities.csv) | react-router-6.27.0 | 5 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Module_Communities_Approximate_Maximum_K_Cut.csv](./react-router/react-router-6.27.0/community-csv/Module_Communities_Approximate_Maximum_K_Cut.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_K_Core_Decomposition.csv](./react-router/react-router-6.27.0/community-csv/Module_Communities_K_Core_Decomposition.csv) | react-router-6.27.0 | 3 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Label_Propagation.csv](./react-router/react-router-6.27.0/community-csv/Module_Communities_Label_Propagation.csv) | react-router-6.27.0 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Local_Clustering_Coefficient_Aggregated.csv](./react-router/react-router-6.27.0/community-csv/Module_Communities_Local_Clustering_Coefficient_Aggregated.csv) | react-router-6.27.0 | 4 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Module_Communities_Louvain.csv](./react-router/react-router-6.27.0/community-csv/Module_Communities_Louvain.csv) | react-router-6.27.0 | 3 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Module_Communities_Weakly_Connected_Components.csv](./react-router/react-router-6.27.0/community-csv/Module_Communities_Weakly_Connected_Components.csv) | react-router-6.27.0 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_communityKCoreDecompositionValue_Community__Metrics.csv](./react-router/react-router-6.27.0/community-csv/Module_communityKCoreDecompositionValue_Community__Metrics.csv) | react-router-6.27.0 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLabelPropagationId_Community__Metrics.csv](./react-router/react-router-6.27.0/community-csv/Module_communityLabelPropagationId_Community__Metrics.csv) | react-router-6.27.0 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLeidenId_Community__Metrics.csv](./react-router/react-router-6.27.0/community-csv/Module_communityLeidenId_Community__Metrics.csv) | react-router-6.27.0 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLouvainId_Community__Metrics.csv](./react-router/react-router-6.27.0/community-csv/Module_communityLouvainId_Community__Metrics.csv) | react-router-6.27.0 | 3 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityMaximumKCutId_Community__Metrics.csv](./react-router/react-router-6.27.0/community-csv/Module_communityMaximumKCutId_Community__Metrics.csv) | react-router-6.27.0 | 5 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityWeaklyConnectedComponentId_Community__Metrics.csv](./react-router/react-router-6.27.0/community-csv/Module_communityWeaklyConnectedComponentId_Community__Metrics.csv) | react-router-6.27.0 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_module_usage_overall_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_module_usage_overall_for_Typescript.csv) | react-router-6.27.0 | 4 | [External_Dependencies/External_module_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_overall_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_aggregated_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_module_usage_per_internal_module_aggregated_for_Typescript.csv) | react-router-6.27.0 | 5 | [External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_distribution_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_module_usage_per_internal_module_distribution_for_Typescript.csv) | react-router-6.27.0 | 5 | [External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_module_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.27.0 | 7 | [External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_module_usage_spread_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_module_usage_spread_for_Typescript.csv) | react-router-6.27.0 | 4 | [External_Dependencies/External_module_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_spread_for_Typescript.cypher) | +| [External_modules_resolved_to_internal_ones_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_modules_resolved_to_internal_ones_for_Typescript.csv) | react-router-6.27.0 | 3 | [External_Dependencies/List_external_modules_resolved_to_internal_ones_for_Typescript.cypher](./../cypher/External_Dependencies/List_external_modules_resolved_to_internal_ones_for_Typescript.cypher) | +| [External_namespace_usage_overall_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_namespace_usage_overall_for_Typescript.csv) | react-router-6.27.0 | 3 | [External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher) | +| [External_namespace_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_namespace_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.27.0 | 6 | [External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_namespace_usage_spread_for_Typescript.csv](./react-router/react-router-6.27.0/external-dependencies-csv/External_namespace_usage_spread_for_Typescript.csv) | react-router-6.27.0 | 3 | [External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher) | +| [Package_json_dependencies_combinations.csv](./react-router/react-router-6.27.0/external-dependencies-csv/Package_json_dependencies_combinations.csv) | react-router-6.27.0 | 49 | [External_Dependencies/Package_json_dependencies_combinations.cypher](./../cypher/External_Dependencies/Package_json_dependencies_combinations.cypher) | +| [Package_json_dependencies_occurrence.csv](./react-router/react-router-6.27.0/external-dependencies-csv/Package_json_dependencies_occurrence.csv) | react-router-6.27.0 | 79 | [External_Dependencies/Package_json_dependencies_occurrence.cypher](./../cypher/External_Dependencies/Package_json_dependencies_occurrence.cypher) | +| [Distance_distribution_between_dependent_files.csv](./react-router/react-router-6.27.0/internal-dependencies-csv/Distance_distribution_between_dependent_files.csv) | react-router-6.27.0 | 2 | [Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher](./../cypher/Internal_Dependencies/Set_file_distance_as_shortest_contains_path_for_dependencies.cypher) | +| [List_all_Typescript_modules.csv](./react-router/react-router-6.27.0/internal-dependencies-csv/List_all_Typescript_modules.csv) | react-router-6.27.0 | 5 | [Internal_Dependencies/List_all_Typescript_modules.cypher](./../cypher/Internal_Dependencies/List_all_Typescript_modules.cypher) | +| [Module_Embeddings_HashGNN.csv](./react-router/react-router-6.27.0/node-embeddings-csv/Module_Embeddings_HashGNN.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Label_Random_Projection.csv](./react-router/react-router-6.27.0/node-embeddings-csv/Module_Embeddings_Label_Random_Projection.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Node2Vec.csv](./react-router/react-router-6.27.0/node-embeddings-csv/Module_Embeddings_Node2Vec.csv) | react-router-6.27.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessTypescript.csv](./react-router/react-router-6.27.0/object-oriented-design-metrics-csv/AbstractnessTypescript.csv) | react-router-6.27.0 | 7 | [Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher) | +| [IncomingPackageDependenciesTypescript.csv](./react-router/react-router-6.27.0/object-oriented-design-metrics-csv/IncomingPackageDependenciesTypescript.csv) | react-router-6.27.0 | 6 | [Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher) | +| [InstabilityTypescript.csv](./react-router/react-router-6.27.0/object-oriented-design-metrics-csv/InstabilityTypescript.csv) | react-router-6.27.0 | 7 | [Metrics/Calculate_and_set_Instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Typescript.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceTypescript.csv](./react-router/react-router-6.27.0/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceTypescript.csv) | react-router-6.27.0 | 7 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher) | +| [OutgoingPackageDependenciesTypescript.csv](./react-router/react-router-6.27.0/object-oriented-design-metrics-csv/OutgoingPackageDependenciesTypescript.csv) | react-router-6.27.0 | 6 | [Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher) | +| [Node_label_combination_count.csv](./react-router/react-router-6.27.0/overview-csv/Node_label_combination_count.csv) | react-router-6.27.0 | 59 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./react-router/react-router-6.27.0/overview-csv/Node_label_count.csv) | react-router-6.27.0 | 61 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_elements_per_module_for_Typescript.csv](./react-router/react-router-6.27.0/overview-csv/Number_of_elements_per_module_for_Typescript.csv) | react-router-6.27.0 | 12 | [Overview/Number_of_elements_per_module_for_Typescript.cypher](./../cypher/Overview/Number_of_elements_per_module_for_Typescript.cypher) | +| [Relationship_type_count.csv](./react-router/react-router-6.27.0/overview-csv/Relationship_type_count.csv) | react-router-6.27.0 | 57 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [Module_all_pairs_shortest_paths_distribution_per_project.csv](./react-router/react-router-6.27.0/path-finding-csv/Module_all_pairs_shortest_paths_distribution_per_project.csv) | react-router-6.27.0 | 4 | [Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher) | +| [Module_longest_paths_distribution.csv](./react-router/react-router-6.27.0/path-finding-csv/Module_longest_paths_distribution.csv) | react-router-6.27.0 | 3 | [Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher) | +| [Module_Similarity.csv](./react-router/react-router-6.27.0/similarity-csv/Module_Similarity.csv) | react-router-6.27.0 | 7 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Module_Topological_Sort.csv](./react-router/react-router-6.27.0/topology-csv/Module_Topological_Sort.csv) | react-router-6.27.0 | 5 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerTypescriptModule.csv](./react-router/react-router-6.27.0/visibility-metrics-csv/RelativeVisibilityPerTypescriptModule.csv) | react-router-6.27.0 | 5 | [Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher](./../cypher/Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher) | +| [RelativeVisibilityPerTypescriptProject.csv](./react-router/react-router-6.27.0/visibility-metrics-csv/RelativeVisibilityPerTypescriptProject.csv) | react-router-6.27.0 | 4 | [Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher) | +| [Module_Centrality_All.csv](./react-router/react-router-6.28.0/centrality-csv/Module_Centrality_All.csv) | react-router-6.28.0 | 5 | [Centrality/Centrality_90_Summary.cypher](./../cypher/Centrality/Centrality_90_Summary.cypher) | +| [Module_Centrality_Article_Rank.csv](./react-router/react-router-6.28.0/centrality-csv/Module_Centrality_Article_Rank.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Betweeness.csv](./react-router/react-router-6.28.0/centrality-csv/Module_Centrality_Betweeness.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Centrality_Bridges.csv](./react-router/react-router-6.28.0/centrality-csv/Module_Centrality_Bridges.csv) | react-router-6.28.0 | 4 | [Centrality/Centrality_10d_Bridges_Stream.cypher](./../cypher/Centrality/Centrality_10d_Bridges_Stream.cypher) | +| [Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv](./react-router/react-router-6.28.0/centrality-csv/Module_Centrality_Hyperlink_Induced_Topic_Search_HITS.csv) | react-router-6.28.0 | 5 | [Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher](./../cypher/Centrality/Centrality_9d_Hyperlink_Induced_Topic_Search_HITS_Stream_Mutated.cypher) | +| [Module_Centrality_Page_Rank.csv](./react-router/react-router-6.28.0/centrality-csv/Module_Centrality_Page_Rank.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Cost_Effective_Lazy_Forward_CELF.csv](./react-router/react-router-6.28.0/centrality-csv/Module_Cost_Effective_Lazy_Forward_CELF.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_Harmonic_Closeness.csv](./react-router/react-router-6.28.0/centrality-csv/Module_Harmonic_Closeness.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Value_Descending.cypher) | +| [Module_All_Communities.csv](./react-router/react-router-6.28.0/community-csv/Module_All_Communities.csv) | react-router-6.28.0 | 5 | [Community_Detection/Community_Detection_Summary.cypher](./../cypher/Community_Detection/Community_Detection_Summary.cypher) | +| [Module_Communities_Approximate_Maximum_K_Cut.csv](./react-router/react-router-6.28.0/community-csv/Module_Communities_Approximate_Maximum_K_Cut.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_K_Core_Decomposition.csv](./react-router/react-router-6.28.0/community-csv/Module_Communities_K_Core_Decomposition.csv) | react-router-6.28.0 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Label_Propagation.csv](./react-router/react-router-6.28.0/community-csv/Module_Communities_Label_Propagation.csv) | react-router-6.28.0 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_Communities_Local_Clustering_Coefficient_Aggregated.csv](./react-router/react-router-6.28.0/community-csv/Module_Communities_Local_Clustering_Coefficient_Aggregated.csv) | react-router-6.28.0 | 2 | [Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher](./../cypher/Community_Detection/Community_Detection_10d_LocalClusteringCoefficient_Stream_Aggregated.cypher) | +| [Module_Communities_Louvain.csv](./react-router/react-router-6.28.0/community-csv/Module_Communities_Louvain.csv) | react-router-6.28.0 | 2 | [Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher](./../cypher/Community_Detection/Community_Detection_1d_Stream_Intermediate_Mutated.cypher) | +| [Module_Communities_Weakly_Connected_Components.csv](./react-router/react-router-6.28.0/community-csv/Module_Communities_Weakly_Connected_Components.csv) | react-router-6.28.0 | 2 | [Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated_Grouped.cypher) | +| [Module_communityKCoreDecompositionValue_Community__Metrics.csv](./react-router/react-router-6.28.0/community-csv/Module_communityKCoreDecompositionValue_Community__Metrics.csv) | react-router-6.28.0 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLabelPropagationId_Community__Metrics.csv](./react-router/react-router-6.28.0/community-csv/Module_communityLabelPropagationId_Community__Metrics.csv) | react-router-6.28.0 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLeidenId_Community__Metrics.csv](./react-router/react-router-6.28.0/community-csv/Module_communityLeidenId_Community__Metrics.csv) | react-router-6.28.0 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityLouvainId_Community__Metrics.csv](./react-router/react-router-6.28.0/community-csv/Module_communityLouvainId_Community__Metrics.csv) | react-router-6.28.0 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityMaximumKCutId_Community__Metrics.csv](./react-router/react-router-6.28.0/community-csv/Module_communityMaximumKCutId_Community__Metrics.csv) | react-router-6.28.0 | 5 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [Module_communityWeaklyConnectedComponentId_Community__Metrics.csv](./react-router/react-router-6.28.0/community-csv/Module_communityWeaklyConnectedComponentId_Community__Metrics.csv) | react-router-6.28.0 | 2 | [Community_Detection/Community_Detection_9_Community_Metrics.cypher](./../cypher/Community_Detection/Community_Detection_9_Community_Metrics.cypher) | +| [External_module_usage_overall_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_module_usage_overall_for_Typescript.csv) | react-router-6.28.0 | 4 | [External_Dependencies/External_module_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_overall_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_aggregated_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_module_usage_per_internal_module_aggregated_for_Typescript.csv) | react-router-6.28.0 | 5 | [External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_distribution_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_module_usage_per_internal_module_distribution_for_Typescript.csv) | react-router-6.28.0 | 5 | [External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_module_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.28.0 | 7 | [External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_module_usage_spread_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_module_usage_spread_for_Typescript.csv) | react-router-6.28.0 | 4 | [External_Dependencies/External_module_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_spread_for_Typescript.cypher) | +| [External_modules_resolved_to_internal_ones_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_modules_resolved_to_internal_ones_for_Typescript.csv) | react-router-6.28.0 | 2 | [External_Dependencies/List_external_modules_resolved_to_internal_ones_for_Typescript.cypher](./../cypher/External_Dependencies/List_external_modules_resolved_to_internal_ones_for_Typescript.cypher) | +| [External_namespace_usage_overall_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_namespace_usage_overall_for_Typescript.csv) | react-router-6.28.0 | 3 | [External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher) | +| [External_namespace_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_namespace_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.28.0 | 6 | [External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_namespace_usage_spread_for_Typescript.csv](./react-router/react-router-6.28.0/external-dependencies-csv/External_namespace_usage_spread_for_Typescript.csv) | react-router-6.28.0 | 3 | [External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher) | +| [Package_json_dependencies_combinations.csv](./react-router/react-router-6.28.0/external-dependencies-csv/Package_json_dependencies_combinations.csv) | react-router-6.28.0 | 49 | [External_Dependencies/Package_json_dependencies_combinations.cypher](./../cypher/External_Dependencies/Package_json_dependencies_combinations.cypher) | +| [Package_json_dependencies_occurrence.csv](./react-router/react-router-6.28.0/external-dependencies-csv/Package_json_dependencies_occurrence.csv) | react-router-6.28.0 | 79 | [External_Dependencies/Package_json_dependencies_occurrence.cypher](./../cypher/External_Dependencies/Package_json_dependencies_occurrence.cypher) | +| [List_all_Typescript_modules.csv](./react-router/react-router-6.28.0/internal-dependencies-csv/List_all_Typescript_modules.csv) | react-router-6.28.0 | 5 | [Internal_Dependencies/List_all_Typescript_modules.cypher](./../cypher/Internal_Dependencies/List_all_Typescript_modules.cypher) | +| [ModuleElementsUsageTypescript.csv](./react-router/react-router-6.28.0/internal-dependencies-csv/ModuleElementsUsageTypescript.csv) | react-router-6.28.0 | 3 | [Internal_Dependencies/How_many_elements_compared_to_all_existing_are_used_by_dependent_modules_for_Typescript.cypher](./../cypher/Internal_Dependencies/How_many_elements_compared_to_all_existing_are_used_by_dependent_modules_for_Typescript.cypher) | +| [WidelyUsedTypescriptElements.csv](./react-router/react-router-6.28.0/internal-dependencies-csv/WidelyUsedTypescriptElements.csv) | react-router-6.28.0 | 9 | [Internal_Dependencies/List_elements_that_are_used_by_many_different_modules_for_Typescript.cypher](./../cypher/Internal_Dependencies/List_elements_that_are_used_by_many_different_modules_for_Typescript.cypher) | +| [Module_Embeddings_HashGNN.csv](./react-router/react-router-6.28.0/node-embeddings-csv/Module_Embeddings_HashGNN.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Label_Random_Projection.csv](./react-router/react-router-6.28.0/node-embeddings-csv/Module_Embeddings_Label_Random_Projection.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [Module_Embeddings_Node2Vec.csv](./react-router/react-router-6.28.0/node-embeddings-csv/Module_Embeddings_Node2Vec.csv) | react-router-6.28.0 | 5 | [Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher](./../cypher/Dependencies_Projection/Dependencies_8_Stream_Mutated.cypher) | +| [AbstractnessTypescript.csv](./react-router/react-router-6.28.0/object-oriented-design-metrics-csv/AbstractnessTypescript.csv) | react-router-6.28.0 | 7 | [Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher) | +| [IncomingPackageDependenciesTypescript.csv](./react-router/react-router-6.28.0/object-oriented-design-metrics-csv/IncomingPackageDependenciesTypescript.csv) | react-router-6.28.0 | 6 | [Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher) | +| [InstabilityTypescript.csv](./react-router/react-router-6.28.0/object-oriented-design-metrics-csv/InstabilityTypescript.csv) | react-router-6.28.0 | 7 | [Metrics/Calculate_and_set_Instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Typescript.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceTypescript.csv](./react-router/react-router-6.28.0/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceTypescript.csv) | react-router-6.28.0 | 7 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher) | +| [OutgoingPackageDependenciesTypescript.csv](./react-router/react-router-6.28.0/object-oriented-design-metrics-csv/OutgoingPackageDependenciesTypescript.csv) | react-router-6.28.0 | 6 | [Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher) | +| [Node_label_combination_count.csv](./react-router/react-router-6.28.0/overview-csv/Node_label_combination_count.csv) | react-router-6.28.0 | 59 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./react-router/react-router-6.28.0/overview-csv/Node_label_count.csv) | react-router-6.28.0 | 61 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_elements_per_module_for_Typescript.csv](./react-router/react-router-6.28.0/overview-csv/Number_of_elements_per_module_for_Typescript.csv) | react-router-6.28.0 | 12 | [Overview/Number_of_elements_per_module_for_Typescript.cypher](./../cypher/Overview/Number_of_elements_per_module_for_Typescript.cypher) | +| [Relationship_type_count.csv](./react-router/react-router-6.28.0/overview-csv/Relationship_type_count.csv) | react-router-6.28.0 | 57 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [Module_all_pairs_shortest_paths_distribution_per_project.csv](./react-router/react-router-6.28.0/path-finding-csv/Module_all_pairs_shortest_paths_distribution_per_project.csv) | react-router-6.28.0 | 3 | [Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_5_All_pairs_shortest_path_distribution_per_project.cypher) | +| [Module_longest_paths_distribution.csv](./react-router/react-router-6.28.0/path-finding-csv/Module_longest_paths_distribution.csv) | react-router-6.28.0 | 2 | [Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher](./../cypher/Path_Finding/Path_Finding_6_Longest_paths_distribution_per_project.cypher) | +| [Module_Similarity.csv](./react-router/react-router-6.28.0/similarity-csv/Module_Similarity.csv) | react-router-6.28.0 | 7 | [Similarity/Similarity_1d_Stream_Mutated.cypher](./../cypher/Similarity/Similarity_1d_Stream_Mutated.cypher) | +| [Module_Topological_Sort.csv](./react-router/react-router-6.28.0/topology-csv/Module_Topological_Sort.csv) | react-router-6.28.0 | 5 | [Topological_Sort/Topological_Sort_Query.cypher](./../cypher/Topological_Sort/Topological_Sort_Query.cypher) | +| [RelativeVisibilityPerTypescriptModule.csv](./react-router/react-router-6.28.0/visibility-metrics-csv/RelativeVisibilityPerTypescriptModule.csv) | react-router-6.28.0 | 5 | [Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher](./../cypher/Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher) | +| [RelativeVisibilityPerTypescriptProject.csv](./react-router/react-router-6.28.0/visibility-metrics-csv/RelativeVisibilityPerTypescriptProject.csv) | react-router-6.28.0 | 4 | [Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher) | +| [External_module_usage_overall_for_Typescript.csv](./react-router/react-router-6.28.1/external-dependencies-csv/External_module_usage_overall_for_Typescript.csv) | react-router-6.28.1 | 5 | [External_Dependencies/External_module_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_overall_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_aggregated_for_Typescript.csv](./react-router/react-router-6.28.1/external-dependencies-csv/External_module_usage_per_internal_module_aggregated_for_Typescript.csv) | react-router-6.28.1 | 5 | [External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_aggregated_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_distribution_for_Typescript.csv](./react-router/react-router-6.28.1/external-dependencies-csv/External_module_usage_per_internal_module_distribution_for_Typescript.csv) | react-router-6.28.1 | 5 | [External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_distribution_for_Typescript.cypher) | +| [External_module_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.28.1/external-dependencies-csv/External_module_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.28.1 | 11 | [External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_module_usage_spread_for_Typescript.csv](./react-router/react-router-6.28.1/external-dependencies-csv/External_module_usage_spread_for_Typescript.csv) | react-router-6.28.1 | 5 | [External_Dependencies/External_module_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_module_usage_spread_for_Typescript.cypher) | +| [External_namespace_usage_overall_for_Typescript.csv](./react-router/react-router-6.28.1/external-dependencies-csv/External_namespace_usage_overall_for_Typescript.csv) | react-router-6.28.1 | 4 | [External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_overall_for_Typescript.cypher) | +| [External_namespace_usage_per_internal_module_sorted_for_Typescript.csv](./react-router/react-router-6.28.1/external-dependencies-csv/External_namespace_usage_per_internal_module_sorted_for_Typescript.csv) | react-router-6.28.1 | 10 | [External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_per_internal_module_sorted_for_Typescript.cypher) | +| [External_namespace_usage_spread_for_Typescript.csv](./react-router/react-router-6.28.1/external-dependencies-csv/External_namespace_usage_spread_for_Typescript.csv) | react-router-6.28.1 | 4 | [External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher](./../cypher/External_Dependencies/External_namespace_usage_spread_for_Typescript.cypher) | +| [Package_json_dependencies_combinations.csv](./react-router/react-router-6.28.1/external-dependencies-csv/Package_json_dependencies_combinations.csv) | react-router-6.28.1 | 49 | [External_Dependencies/Package_json_dependencies_combinations.cypher](./../cypher/External_Dependencies/Package_json_dependencies_combinations.cypher) | +| [Package_json_dependencies_occurrence.csv](./react-router/react-router-6.28.1/external-dependencies-csv/Package_json_dependencies_occurrence.csv) | react-router-6.28.1 | 79 | [External_Dependencies/Package_json_dependencies_occurrence.cypher](./../cypher/External_Dependencies/Package_json_dependencies_occurrence.cypher) | +| [Cyclic_Dependencies_Breakdown_Backward_Only_for_Typescript.csv](./react-router/react-router-6.28.1/internal-dependencies-csv/Cyclic_Dependencies_Breakdown_Backward_Only_for_Typescript.csv) | react-router-6.28.1 | 8 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only_for_Typescript.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_Backward_Only_for_Typescript.cypher) | +| [Cyclic_Dependencies_Breakdown_for_Typescript.csv](./react-router/react-router-6.28.1/internal-dependencies-csv/Cyclic_Dependencies_Breakdown_for_Typescript.csv) | react-router-6.28.1 | 19 | [Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_for_Typescript.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_Breakdown_for_Typescript.cypher) | +| [Cyclic_Dependencies_for_Typescript.csv](./react-router/react-router-6.28.1/internal-dependencies-csv/Cyclic_Dependencies_for_Typescript.csv) | react-router-6.28.1 | 2 | [Cyclic_Dependencies/Cyclic_Dependencies_for_Typescript.cypher](./../cypher/Cyclic_Dependencies/Cyclic_Dependencies_for_Typescript.cypher) | +| [List_all_Typescript_modules.csv](./react-router/react-router-6.28.1/internal-dependencies-csv/List_all_Typescript_modules.csv) | react-router-6.28.1 | 5 | [Internal_Dependencies/List_all_Typescript_modules.cypher](./../cypher/Internal_Dependencies/List_all_Typescript_modules.cypher) | +| [ModuleElementsUsageTypescript.csv](./react-router/react-router-6.28.1/internal-dependencies-csv/ModuleElementsUsageTypescript.csv) | react-router-6.28.1 | 5 | [Internal_Dependencies/How_many_elements_compared_to_all_existing_are_used_by_dependent_modules_for_Typescript.cypher](./../cypher/Internal_Dependencies/How_many_elements_compared_to_all_existing_are_used_by_dependent_modules_for_Typescript.cypher) | +| [WidelyUsedTypescriptElements.csv](./react-router/react-router-6.28.1/internal-dependencies-csv/WidelyUsedTypescriptElements.csv) | react-router-6.28.1 | 8 | [Internal_Dependencies/List_elements_that_are_used_by_many_different_modules_for_Typescript.cypher](./../cypher/Internal_Dependencies/List_elements_that_are_used_by_many_different_modules_for_Typescript.cypher) | +| [AbstractnessTypescript.csv](./react-router/react-router-6.28.1/object-oriented-design-metrics-csv/AbstractnessTypescript.csv) | react-router-6.28.1 | 7 | [Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Abstractness_for_Typescript.cypher) | +| [IncomingPackageDependenciesTypescript.csv](./react-router/react-router-6.28.1/object-oriented-design-metrics-csv/IncomingPackageDependenciesTypescript.csv) | react-router-6.28.1 | 6 | [Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Incoming_Typescript_Module_Dependencies.cypher) | +| [InstabilityTypescript.csv](./react-router/react-router-6.28.1/object-oriented-design-metrics-csv/InstabilityTypescript.csv) | react-router-6.28.1 | 7 | [Metrics/Calculate_and_set_Instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_and_set_Instability_for_Typescript.cypher) | +| [MainSequenceAbstractnessInstabilityDistanceTypescript.csv](./react-router/react-router-6.28.1/object-oriented-design-metrics-csv/MainSequenceAbstractnessInstabilityDistanceTypescript.csv) | react-router-6.28.1 | 7 | [Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher](./../cypher/Metrics/Calculate_distance_between_abstractness_and_instability_for_Typescript.cypher) | +| [OutgoingPackageDependenciesTypescript.csv](./react-router/react-router-6.28.1/object-oriented-design-metrics-csv/OutgoingPackageDependenciesTypescript.csv) | react-router-6.28.1 | 6 | [Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher](./../cypher/Metrics/Get_Outgoing_Typescript_Module_Dependencies.cypher) | +| [Node_label_combination_count.csv](./react-router/react-router-6.28.1/overview-csv/Node_label_combination_count.csv) | react-router-6.28.1 | 57 | [Overview/Node_label_combination_count.cypher](./../cypher/Overview/Node_label_combination_count.cypher) | +| [Node_label_count.csv](./react-router/react-router-6.28.1/overview-csv/Node_label_count.csv) | react-router-6.28.1 | 60 | [Overview/Node_label_count.cypher](./../cypher/Overview/Node_label_count.cypher) | +| [Number_of_elements_per_module_for_Typescript.csv](./react-router/react-router-6.28.1/overview-csv/Number_of_elements_per_module_for_Typescript.csv) | react-router-6.28.1 | 12 | [Overview/Number_of_elements_per_module_for_Typescript.cypher](./../cypher/Overview/Number_of_elements_per_module_for_Typescript.cypher) | +| [Relationship_type_count.csv](./react-router/react-router-6.28.1/overview-csv/Relationship_type_count.csv) | react-router-6.28.1 | 43 | [Overview/Relationship_type_count.cypher](./../cypher/Overview/Relationship_type_count.cypher) | +| [RelativeVisibilityPerTypescriptModule.csv](./react-router/react-router-6.28.1/visibility-metrics-csv/RelativeVisibilityPerTypescriptModule.csv) | react-router-6.28.1 | 5 | [Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher](./../cypher/Visibility/Relative_visibility_exported_elements_to_all_elements_per_module_for_Typescript.cypher) | +| [RelativeVisibilityPerTypescriptProject.csv](./react-router/react-router-6.28.1/visibility-metrics-csv/RelativeVisibilityPerTypescriptProject.csv) | react-router-6.28.1 | 4 | [Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher](./../cypher/Visibility/Global_relative_visibility_statistics_for_elements_for_Typescript.cypher) | diff --git a/analysis-results/IMAGES.md b/analysis-results/IMAGES.md new file mode 100644 index 00000000..3e8a2e92 --- /dev/null +++ b/analysis-results/IMAGES.md @@ -0,0 +1,468 @@ +# Image Reference + +This document serves as a reference for all images (PNG) in the current directory and its subdirectories. +It provides a table listing each file and the analysis it belongs to. +This file was generated with the script [generateImageReference.sh](./../documentation/analysis-reports-reference/generateImageReference.sh). + +Image | Analysis | +-------|----------| +| [ExternalDependenciesJava_101_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_101_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_16_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_16_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_18_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_18_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_20_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_20_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_22_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_22_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_26_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_26_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_28_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_28_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_30_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_30_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_32_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_32_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_44_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_44_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_46_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_46_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_48_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_48_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_50_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_50_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_54_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_54_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_56_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_56_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_58_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_58_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_75_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_75_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_77_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_77_1.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_99_1.png](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_99_1.png) | AxonFramework-4.10.2 | +| [graphVisualizationJavaArtifactDependencies-0.png](./AxonFramework/AxonFramework-4.10.2/graph-visualization-java-artifact-dependencies/graphVisualizationJavaArtifactDependencies-0.png) | AxonFramework-4.10.2 | +| [error-graphVisualizationTypescriptModuleDependencies-no-canvas-found.png](./AxonFramework/AxonFramework-4.10.2/graph-visualization-typescript-module-dependencies/error-graphVisualizationTypescriptModuleDependencies-no-canvas-found.png) | AxonFramework-4.10.2 | +| [MethodMetricsJava_14_1.png](./AxonFramework/AxonFramework-4.10.2/method-metrics-java/MethodMetricsJava_files/MethodMetricsJava_14_1.png) | AxonFramework-4.10.2 | +| [MethodMetricsJava_26_1.png](./AxonFramework/AxonFramework-4.10.2/method-metrics-java/MethodMetricsJava_files/MethodMetricsJava_26_1.png) | AxonFramework-4.10.2 | +| [NodeEmbeddingsJava_21_0.png](./AxonFramework/AxonFramework-4.10.2/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_21_0.png) | AxonFramework-4.10.2 | +| [NodeEmbeddingsJava_23_5.png](./AxonFramework/AxonFramework-4.10.2/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_23_5.png) | AxonFramework-4.10.2 | +| [NodeEmbeddingsJava_25_5.png](./AxonFramework/AxonFramework-4.10.2/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_25_5.png) | AxonFramework-4.10.2 | +| [ObjectOrientedDesignMetricsJava_41_0.png](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava_files/ObjectOrientedDesignMetricsJava_41_0.png) | AxonFramework-4.10.2 | +| [ObjectOrientedDesignMetricsJava_43_0.png](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava_files/ObjectOrientedDesignMetricsJava_43_0.png) | AxonFramework-4.10.2 | +| [OverviewGeneral_15_1.png](./AxonFramework/AxonFramework-4.10.2/overview-general/OverviewGeneral_files/OverviewGeneral_15_1.png) | AxonFramework-4.10.2 | +| [OverviewGeneral_19_1.png](./AxonFramework/AxonFramework-4.10.2/overview-general/OverviewGeneral_files/OverviewGeneral_19_1.png) | AxonFramework-4.10.2 | +| [OverviewGeneral_23_1.png](./AxonFramework/AxonFramework-4.10.2/overview-general/OverviewGeneral_files/OverviewGeneral_23_1.png) | AxonFramework-4.10.2 | +| [OverviewGeneral_28_1.png](./AxonFramework/AxonFramework-4.10.2/overview-general/OverviewGeneral_files/OverviewGeneral_28_1.png) | AxonFramework-4.10.2 | +| [OverviewGeneral_32_1.png](./AxonFramework/AxonFramework-4.10.2/overview-general/OverviewGeneral_files/OverviewGeneral_32_1.png) | AxonFramework-4.10.2 | +| [OverviewJava_20_1.png](./AxonFramework/AxonFramework-4.10.2/overview-java/OverviewJava_files/OverviewJava_20_1.png) | AxonFramework-4.10.2 | +| [OverviewJava_24_1.png](./AxonFramework/AxonFramework-4.10.2/overview-java/OverviewJava_files/OverviewJava_24_1.png) | AxonFramework-4.10.2 | +| [OverviewJava_26_1.png](./AxonFramework/AxonFramework-4.10.2/overview-java/OverviewJava_files/OverviewJava_26_1.png) | AxonFramework-4.10.2 | +| [OverviewJava_28_1.png](./AxonFramework/AxonFramework-4.10.2/overview-java/OverviewJava_files/OverviewJava_28_1.png) | AxonFramework-4.10.2 | +| [OverviewJava_30_1.png](./AxonFramework/AxonFramework-4.10.2/overview-java/OverviewJava_files/OverviewJava_30_1.png) | AxonFramework-4.10.2 | +| [OverviewJava_34_1.png](./AxonFramework/AxonFramework-4.10.2/overview-java/OverviewJava_files/OverviewJava_34_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_101_1.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_101_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_35_0.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_35_0.png) | AxonFramework-4.10.2 | +| [PathFindingJava_37_1.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_37_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_44_0.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_44_0.png) | AxonFramework-4.10.2 | +| [PathFindingJava_47_1.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_47_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_50_1.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_50_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_59_0.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_59_0.png) | AxonFramework-4.10.2 | +| [PathFindingJava_61_1.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_61_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_68_0.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_68_0.png) | AxonFramework-4.10.2 | +| [PathFindingJava_71_1.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_71_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_74_1.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_74_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_88_0.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_88_0.png) | AxonFramework-4.10.2 | +| [PathFindingJava_90_1.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_90_1.png) | AxonFramework-4.10.2 | +| [PathFindingJava_99_0.png](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava_files/PathFindingJava_99_0.png) | AxonFramework-4.10.2 | +| [VisibilityMetricsJava_17_2.png](./AxonFramework/AxonFramework-4.10.2/visibility-metrics-java/VisibilityMetricsJava_files/VisibilityMetricsJava_17_2.png) | AxonFramework-4.10.2 | +| [VisibilityMetricsJava_24_2.png](./AxonFramework/AxonFramework-4.10.2/visibility-metrics-java/VisibilityMetricsJava_files/VisibilityMetricsJava_24_2.png) | AxonFramework-4.10.2 | +| [Wordcloud_14_1.png](./AxonFramework/AxonFramework-4.10.2/wordcloud/Wordcloud_files/Wordcloud_14_1.png) | AxonFramework-4.10.2 | +| [Wordcloud_17_0.png](./AxonFramework/AxonFramework-4.10.2/wordcloud/Wordcloud_files/Wordcloud_17_0.png) | AxonFramework-4.10.2 | +| [ExternalDependenciesJava_101_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_101_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_16_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_16_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_18_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_18_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_20_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_20_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_22_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_22_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_26_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_26_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_28_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_28_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_30_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_30_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_32_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_32_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_44_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_44_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_46_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_46_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_48_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_48_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_50_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_50_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_54_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_54_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_56_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_56_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_58_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_58_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_75_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_75_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_77_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_77_1.png) | AxonFramework-4.10.3 | +| [ExternalDependenciesJava_99_1.png](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_99_1.png) | AxonFramework-4.10.3 | +| [MethodMetricsJava_14_1.png](./AxonFramework/AxonFramework-4.10.3/method-metrics-java/MethodMetricsJava_files/MethodMetricsJava_14_1.png) | AxonFramework-4.10.3 | +| [MethodMetricsJava_26_1.png](./AxonFramework/AxonFramework-4.10.3/method-metrics-java/MethodMetricsJava_files/MethodMetricsJava_26_1.png) | AxonFramework-4.10.3 | +| [NodeEmbeddingsJava_21_0.png](./AxonFramework/AxonFramework-4.10.3/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_21_0.png) | AxonFramework-4.10.3 | +| [NodeEmbeddingsJava_23_5.png](./AxonFramework/AxonFramework-4.10.3/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_23_5.png) | AxonFramework-4.10.3 | +| [NodeEmbeddingsJava_25_5.png](./AxonFramework/AxonFramework-4.10.3/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_25_5.png) | AxonFramework-4.10.3 | +| [ObjectOrientedDesignMetricsJava_41_0.png](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava_files/ObjectOrientedDesignMetricsJava_41_0.png) | AxonFramework-4.10.3 | +| [ObjectOrientedDesignMetricsJava_43_0.png](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava_files/ObjectOrientedDesignMetricsJava_43_0.png) | AxonFramework-4.10.3 | +| [OverviewGeneral_15_1.png](./AxonFramework/AxonFramework-4.10.3/overview-general/OverviewGeneral_files/OverviewGeneral_15_1.png) | AxonFramework-4.10.3 | +| [OverviewGeneral_19_1.png](./AxonFramework/AxonFramework-4.10.3/overview-general/OverviewGeneral_files/OverviewGeneral_19_1.png) | AxonFramework-4.10.3 | +| [OverviewGeneral_23_1.png](./AxonFramework/AxonFramework-4.10.3/overview-general/OverviewGeneral_files/OverviewGeneral_23_1.png) | AxonFramework-4.10.3 | +| [OverviewGeneral_28_1.png](./AxonFramework/AxonFramework-4.10.3/overview-general/OverviewGeneral_files/OverviewGeneral_28_1.png) | AxonFramework-4.10.3 | +| [OverviewGeneral_32_1.png](./AxonFramework/AxonFramework-4.10.3/overview-general/OverviewGeneral_files/OverviewGeneral_32_1.png) | AxonFramework-4.10.3 | +| [OverviewJava_20_1.png](./AxonFramework/AxonFramework-4.10.3/overview-java/OverviewJava_files/OverviewJava_20_1.png) | AxonFramework-4.10.3 | +| [OverviewJava_24_1.png](./AxonFramework/AxonFramework-4.10.3/overview-java/OverviewJava_files/OverviewJava_24_1.png) | AxonFramework-4.10.3 | +| [OverviewJava_26_1.png](./AxonFramework/AxonFramework-4.10.3/overview-java/OverviewJava_files/OverviewJava_26_1.png) | AxonFramework-4.10.3 | +| [OverviewJava_28_1.png](./AxonFramework/AxonFramework-4.10.3/overview-java/OverviewJava_files/OverviewJava_28_1.png) | AxonFramework-4.10.3 | +| [OverviewJava_30_1.png](./AxonFramework/AxonFramework-4.10.3/overview-java/OverviewJava_files/OverviewJava_30_1.png) | AxonFramework-4.10.3 | +| [OverviewJava_34_1.png](./AxonFramework/AxonFramework-4.10.3/overview-java/OverviewJava_files/OverviewJava_34_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_101_1.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_101_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_35_0.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_35_0.png) | AxonFramework-4.10.3 | +| [PathFindingJava_37_1.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_37_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_44_0.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_44_0.png) | AxonFramework-4.10.3 | +| [PathFindingJava_47_1.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_47_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_50_1.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_50_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_59_0.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_59_0.png) | AxonFramework-4.10.3 | +| [PathFindingJava_61_1.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_61_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_68_0.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_68_0.png) | AxonFramework-4.10.3 | +| [PathFindingJava_71_1.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_71_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_74_1.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_74_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_88_0.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_88_0.png) | AxonFramework-4.10.3 | +| [PathFindingJava_90_1.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_90_1.png) | AxonFramework-4.10.3 | +| [PathFindingJava_99_0.png](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava_files/PathFindingJava_99_0.png) | AxonFramework-4.10.3 | +| [VisibilityMetricsJava_17_2.png](./AxonFramework/AxonFramework-4.10.3/visibility-metrics-java/VisibilityMetricsJava_files/VisibilityMetricsJava_17_2.png) | AxonFramework-4.10.3 | +| [VisibilityMetricsJava_24_2.png](./AxonFramework/AxonFramework-4.10.3/visibility-metrics-java/VisibilityMetricsJava_files/VisibilityMetricsJava_24_2.png) | AxonFramework-4.10.3 | +| [Wordcloud_14_1.png](./AxonFramework/AxonFramework-4.10.3/wordcloud/Wordcloud_files/Wordcloud_14_1.png) | AxonFramework-4.10.3 | +| [Wordcloud_17_0.png](./AxonFramework/AxonFramework-4.10.3/wordcloud/Wordcloud_files/Wordcloud_17_0.png) | AxonFramework-4.10.3 | +| [artifactDependenciesGraph-0.png](./AxonFramework/AxonFramework-4.6.8/artifact-dependencies-graph/artifactDependenciesGraph-0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_14_0.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_14_0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_17_0.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_17_0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_21_0.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_21_0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_23_0.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_23_0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_35_0.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_35_0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_37_0.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_37_0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_41_0.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_41_0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_43_0.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_43_0.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_58_1.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_58_1.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_60_1.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_60_1.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_82_1.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_82_1.png) | AxonFramework-4.6.8 | +| [ExternalDependencies_84_1.png](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies_files/ExternalDependencies_84_1.png) | AxonFramework-4.6.8 | +| [MethodMetrics_14_1.png](./AxonFramework/AxonFramework-4.6.8/method-metrics/MethodMetrics_files/MethodMetrics_14_1.png) | AxonFramework-4.6.8 | +| [MethodMetrics_26_1.png](./AxonFramework/AxonFramework-4.6.8/method-metrics/MethodMetrics_files/MethodMetrics_26_1.png) | AxonFramework-4.6.8 | +| [NodeEmbeddings_18_0.png](./AxonFramework/AxonFramework-4.6.8/node-embeddings/NodeEmbeddings_files/NodeEmbeddings_18_0.png) | AxonFramework-4.6.8 | +| [ObjectOrientedDesignMetrics_20_0.png](./AxonFramework/AxonFramework-4.6.8/object-oriented-design-metrics/ObjectOrientedDesignMetrics_files/ObjectOrientedDesignMetrics_20_0.png) | AxonFramework-4.6.8 | +| [Overview_17_1.png](./AxonFramework/AxonFramework-4.6.8/overview/Overview_files/Overview_17_1.png) | AxonFramework-4.6.8 | +| [Overview_21_1.png](./AxonFramework/AxonFramework-4.6.8/overview/Overview_files/Overview_21_1.png) | AxonFramework-4.6.8 | +| [Overview_23_1.png](./AxonFramework/AxonFramework-4.6.8/overview/Overview_files/Overview_23_1.png) | AxonFramework-4.6.8 | +| [Overview_25_1.png](./AxonFramework/AxonFramework-4.6.8/overview/Overview_files/Overview_25_1.png) | AxonFramework-4.6.8 | +| [Overview_27_1.png](./AxonFramework/AxonFramework-4.6.8/overview/Overview_files/Overview_27_1.png) | AxonFramework-4.6.8 | +| [Overview_32_0.png](./AxonFramework/AxonFramework-4.6.8/overview/Overview_files/Overview_32_0.png) | AxonFramework-4.6.8 | +| [VisibilityMetrics_17_2.png](./AxonFramework/AxonFramework-4.6.8/visibility-metrics/VisibilityMetrics_files/VisibilityMetrics_17_2.png) | AxonFramework-4.6.8 | +| [VisibilityMetrics_24_2.png](./AxonFramework/AxonFramework-4.6.8/visibility-metrics/VisibilityMetrics_files/VisibilityMetrics_24_2.png) | AxonFramework-4.6.8 | +| [Wordcloud_10_1.png](./AxonFramework/AxonFramework-4.6.8/wordcloud/Wordcloud_files/Wordcloud_10_1.png) | AxonFramework-4.6.8 | +| [artifactDependenciesGraph-0.png](./AxonFramework/AxonFramework-4.7.6/artifact-dependencies-graph/artifactDependenciesGraph-0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_14_0.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_14_0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_17_0.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_17_0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_21_0.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_21_0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_23_0.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_23_0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_35_0.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_35_0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_37_0.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_37_0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_41_0.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_41_0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_43_0.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_43_0.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_58_1.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_58_1.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_60_1.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_60_1.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_82_1.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_82_1.png) | AxonFramework-4.7.6 | +| [ExternalDependencies_84_1.png](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies_files/ExternalDependencies_84_1.png) | AxonFramework-4.7.6 | +| [MethodMetrics_14_1.png](./AxonFramework/AxonFramework-4.7.6/method-metrics/MethodMetrics_files/MethodMetrics_14_1.png) | AxonFramework-4.7.6 | +| [MethodMetrics_26_1.png](./AxonFramework/AxonFramework-4.7.6/method-metrics/MethodMetrics_files/MethodMetrics_26_1.png) | AxonFramework-4.7.6 | +| [NodeEmbeddings_18_0.png](./AxonFramework/AxonFramework-4.7.6/node-embeddings/NodeEmbeddings_files/NodeEmbeddings_18_0.png) | AxonFramework-4.7.6 | +| [ObjectOrientedDesignMetrics_20_0.png](./AxonFramework/AxonFramework-4.7.6/object-oriented-design-metrics/ObjectOrientedDesignMetrics_files/ObjectOrientedDesignMetrics_20_0.png) | AxonFramework-4.7.6 | +| [Overview_17_1.png](./AxonFramework/AxonFramework-4.7.6/overview/Overview_files/Overview_17_1.png) | AxonFramework-4.7.6 | +| [Overview_21_1.png](./AxonFramework/AxonFramework-4.7.6/overview/Overview_files/Overview_21_1.png) | AxonFramework-4.7.6 | +| [Overview_23_1.png](./AxonFramework/AxonFramework-4.7.6/overview/Overview_files/Overview_23_1.png) | AxonFramework-4.7.6 | +| [Overview_25_1.png](./AxonFramework/AxonFramework-4.7.6/overview/Overview_files/Overview_25_1.png) | AxonFramework-4.7.6 | +| [Overview_27_1.png](./AxonFramework/AxonFramework-4.7.6/overview/Overview_files/Overview_27_1.png) | AxonFramework-4.7.6 | +| [Overview_32_0.png](./AxonFramework/AxonFramework-4.7.6/overview/Overview_files/Overview_32_0.png) | AxonFramework-4.7.6 | +| [VisibilityMetrics_17_2.png](./AxonFramework/AxonFramework-4.7.6/visibility-metrics/VisibilityMetrics_files/VisibilityMetrics_17_2.png) | AxonFramework-4.7.6 | +| [VisibilityMetrics_24_2.png](./AxonFramework/AxonFramework-4.7.6/visibility-metrics/VisibilityMetrics_files/VisibilityMetrics_24_2.png) | AxonFramework-4.7.6 | +| [Wordcloud_10_1.png](./AxonFramework/AxonFramework-4.7.6/wordcloud/Wordcloud_files/Wordcloud_10_1.png) | AxonFramework-4.7.6 | +| [artifactDependenciesGraph-0.png](./AxonFramework/AxonFramework-4.8.3/artifact-dependencies-graph/artifactDependenciesGraph-0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_14_0.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_14_0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_17_0.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_17_0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_21_0.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_21_0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_23_0.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_23_0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_35_0.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_35_0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_37_0.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_37_0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_41_0.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_41_0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_43_0.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_43_0.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_58_1.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_58_1.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_60_1.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_60_1.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_82_1.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_82_1.png) | AxonFramework-4.8.3 | +| [ExternalDependencies_84_1.png](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies_files/ExternalDependencies_84_1.png) | AxonFramework-4.8.3 | +| [MethodMetrics_14_1.png](./AxonFramework/AxonFramework-4.8.3/method-metrics/MethodMetrics_files/MethodMetrics_14_1.png) | AxonFramework-4.8.3 | +| [MethodMetrics_26_1.png](./AxonFramework/AxonFramework-4.8.3/method-metrics/MethodMetrics_files/MethodMetrics_26_1.png) | AxonFramework-4.8.3 | +| [NodeEmbeddings_18_0.png](./AxonFramework/AxonFramework-4.8.3/node-embeddings/NodeEmbeddings_files/NodeEmbeddings_18_0.png) | AxonFramework-4.8.3 | +| [ObjectOrientedDesignMetrics_20_0.png](./AxonFramework/AxonFramework-4.8.3/object-oriented-design-metrics/ObjectOrientedDesignMetrics_files/ObjectOrientedDesignMetrics_20_0.png) | AxonFramework-4.8.3 | +| [Overview_17_1.png](./AxonFramework/AxonFramework-4.8.3/overview/Overview_files/Overview_17_1.png) | AxonFramework-4.8.3 | +| [Overview_21_1.png](./AxonFramework/AxonFramework-4.8.3/overview/Overview_files/Overview_21_1.png) | AxonFramework-4.8.3 | +| [Overview_23_1.png](./AxonFramework/AxonFramework-4.8.3/overview/Overview_files/Overview_23_1.png) | AxonFramework-4.8.3 | +| [Overview_25_1.png](./AxonFramework/AxonFramework-4.8.3/overview/Overview_files/Overview_25_1.png) | AxonFramework-4.8.3 | +| [Overview_27_1.png](./AxonFramework/AxonFramework-4.8.3/overview/Overview_files/Overview_27_1.png) | AxonFramework-4.8.3 | +| [Overview_32_0.png](./AxonFramework/AxonFramework-4.8.3/overview/Overview_files/Overview_32_0.png) | AxonFramework-4.8.3 | +| [VisibilityMetrics_17_2.png](./AxonFramework/AxonFramework-4.8.3/visibility-metrics/VisibilityMetrics_files/VisibilityMetrics_17_2.png) | AxonFramework-4.8.3 | +| [VisibilityMetrics_24_2.png](./AxonFramework/AxonFramework-4.8.3/visibility-metrics/VisibilityMetrics_files/VisibilityMetrics_24_2.png) | AxonFramework-4.8.3 | +| [Wordcloud_10_1.png](./AxonFramework/AxonFramework-4.8.3/wordcloud/Wordcloud_files/Wordcloud_10_1.png) | AxonFramework-4.8.3 | +| [ExternalDependenciesJava_14_0.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_14_0.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_17_0.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_17_0.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_21_0.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_21_0.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_23_0.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_23_0.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_35_0.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_35_0.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_37_0.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_37_0.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_41_0.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_41_0.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_43_0.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_43_0.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_58_1.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_58_1.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_60_1.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_60_1.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_82_1.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_82_1.png) | AxonFramework-4.9.3 | +| [ExternalDependenciesJava_84_1.png](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava_files/ExternalDependenciesJava_84_1.png) | AxonFramework-4.9.3 | +| [graphVisualizationJavaArtifactDependencies-0.png](./AxonFramework/AxonFramework-4.9.3/graph-visualization-java-artifact-dependencies/graphVisualizationJavaArtifactDependencies-0.png) | AxonFramework-4.9.3 | +| [error-graphVisualizationTypescriptModuleDependencies-no-canvas-found.png](./AxonFramework/AxonFramework-4.9.3/graph-visualization-typescript-module-dependencies/error-graphVisualizationTypescriptModuleDependencies-no-canvas-found.png) | AxonFramework-4.9.3 | +| [MethodMetricsJava_14_1.png](./AxonFramework/AxonFramework-4.9.3/method-metrics-java/MethodMetricsJava_files/MethodMetricsJava_14_1.png) | AxonFramework-4.9.3 | +| [MethodMetricsJava_26_1.png](./AxonFramework/AxonFramework-4.9.3/method-metrics-java/MethodMetricsJava_files/MethodMetricsJava_26_1.png) | AxonFramework-4.9.3 | +| [NodeEmbeddingsJava_21_0.png](./AxonFramework/AxonFramework-4.9.3/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_21_0.png) | AxonFramework-4.9.3 | +| [NodeEmbeddingsJava_23_5.png](./AxonFramework/AxonFramework-4.9.3/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_23_5.png) | AxonFramework-4.9.3 | +| [NodeEmbeddingsJava_25_5.png](./AxonFramework/AxonFramework-4.9.3/node-embeddings-java/NodeEmbeddingsJava_files/NodeEmbeddingsJava_25_5.png) | AxonFramework-4.9.3 | +| [ObjectOrientedDesignMetricsJava_41_0.png](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava_files/ObjectOrientedDesignMetricsJava_41_0.png) | AxonFramework-4.9.3 | +| [ObjectOrientedDesignMetricsJava_43_0.png](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava_files/ObjectOrientedDesignMetricsJava_43_0.png) | AxonFramework-4.9.3 | +| [OverviewGeneral_13_1.png](./AxonFramework/AxonFramework-4.9.3/overview-general/OverviewGeneral_files/OverviewGeneral_13_1.png) | AxonFramework-4.9.3 | +| [OverviewGeneral_17_1.png](./AxonFramework/AxonFramework-4.9.3/overview-general/OverviewGeneral_files/OverviewGeneral_17_1.png) | AxonFramework-4.9.3 | +| [OverviewGeneral_21_1.png](./AxonFramework/AxonFramework-4.9.3/overview-general/OverviewGeneral_files/OverviewGeneral_21_1.png) | AxonFramework-4.9.3 | +| [OverviewGeneral_26_1.png](./AxonFramework/AxonFramework-4.9.3/overview-general/OverviewGeneral_files/OverviewGeneral_26_1.png) | AxonFramework-4.9.3 | +| [OverviewGeneral_30_1.png](./AxonFramework/AxonFramework-4.9.3/overview-general/OverviewGeneral_files/OverviewGeneral_30_1.png) | AxonFramework-4.9.3 | +| [OverviewJava_17_1.png](./AxonFramework/AxonFramework-4.9.3/overview-java/OverviewJava_files/OverviewJava_17_1.png) | AxonFramework-4.9.3 | +| [OverviewJava_21_1.png](./AxonFramework/AxonFramework-4.9.3/overview-java/OverviewJava_files/OverviewJava_21_1.png) | AxonFramework-4.9.3 | +| [OverviewJava_23_1.png](./AxonFramework/AxonFramework-4.9.3/overview-java/OverviewJava_files/OverviewJava_23_1.png) | AxonFramework-4.9.3 | +| [OverviewJava_25_1.png](./AxonFramework/AxonFramework-4.9.3/overview-java/OverviewJava_files/OverviewJava_25_1.png) | AxonFramework-4.9.3 | +| [OverviewJava_27_1.png](./AxonFramework/AxonFramework-4.9.3/overview-java/OverviewJava_files/OverviewJava_27_1.png) | AxonFramework-4.9.3 | +| [OverviewJava_32_0.png](./AxonFramework/AxonFramework-4.9.3/overview-java/OverviewJava_files/OverviewJava_32_0.png) | AxonFramework-4.9.3 | +| [VisibilityMetricsJava_17_2.png](./AxonFramework/AxonFramework-4.9.3/visibility-metrics-java/VisibilityMetricsJava_files/VisibilityMetricsJava_17_2.png) | AxonFramework-4.9.3 | +| [VisibilityMetricsJava_24_2.png](./AxonFramework/AxonFramework-4.9.3/visibility-metrics-java/VisibilityMetricsJava_files/VisibilityMetricsJava_24_2.png) | AxonFramework-4.9.3 | +| [Wordcloud_10_1.png](./AxonFramework/AxonFramework-4.9.3/wordcloud/Wordcloud_files/Wordcloud_10_1.png) | AxonFramework-4.9.3 | +| [error-artifactDependenciesGraph-no-canvas-found.png](./react-router/react-router-6.22.0/artifact-dependencies-graph/error-artifactDependenciesGraph-no-canvas-found.png) | react-router-6.22.0 | +| [ObjectOrientedDesignMetrics_55_0.png](./react-router/react-router-6.22.0/object-oriented-design-metrics/ObjectOrientedDesignMetrics_files/ObjectOrientedDesignMetrics_55_0.png) | react-router-6.22.0 | +| [VisibilityMetrics_17_2.png](./react-router/react-router-6.22.0/visibility-metrics/VisibilityMetrics_files/VisibilityMetrics_17_2.png) | react-router-6.22.0 | +| [VisibilityMetrics_24_2.png](./react-router/react-router-6.22.0/visibility-metrics/VisibilityMetrics_files/VisibilityMetrics_24_2.png) | react-router-6.22.0 | +| [Wordcloud_10_1.png](./react-router/react-router-6.22.0/wordcloud/Wordcloud_files/Wordcloud_10_1.png) | react-router-6.22.0 | +| [ExternalDependenciesTypescript_14_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_14_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_17_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_17_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_21_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_21_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_23_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_23_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_35_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_35_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_37_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_37_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_42_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_42_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_44_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_44_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_46_0.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_46_0.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_62_1.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_62_1.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_64_1.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_64_1.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_77_1.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_77_1.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_79_1.png](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_79_1.png) | react-router-6.23.1 | +| [error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png](./react-router/react-router-6.23.1/graph-visualization-java-artifact-dependencies/error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png) | react-router-6.23.1 | +| [graphVisualizationTypescriptModuleDependencies-0.png](./react-router/react-router-6.23.1/graph-visualization-typescript-module-dependencies/graphVisualizationTypescriptModuleDependencies-0.png) | react-router-6.23.1 | +| [NodeEmbeddingsTypescript_21_0.png](./react-router/react-router-6.23.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_21_0.png) | react-router-6.23.1 | +| [NodeEmbeddingsTypescript_23_6.png](./react-router/react-router-6.23.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_23_6.png) | react-router-6.23.1 | +| [NodeEmbeddingsTypescript_25_6.png](./react-router/react-router-6.23.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_25_6.png) | react-router-6.23.1 | +| [ObjectOrientedDesignMetricsTypescript_28_0.png](./react-router/react-router-6.23.1/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript_files/ObjectOrientedDesignMetricsTypescript_28_0.png) | react-router-6.23.1 | +| [Wordcloud_10_1.png](./react-router/react-router-6.23.1/wordcloud/Wordcloud_files/Wordcloud_10_1.png) | react-router-6.23.1 | +| [ExternalDependenciesTypescript_14_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_14_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_17_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_17_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_21_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_21_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_23_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_23_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_35_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_35_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_37_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_37_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_42_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_42_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_44_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_44_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_46_0.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_46_0.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_62_1.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_62_1.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_64_1.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_64_1.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_77_1.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_77_1.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_79_1.png](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_79_1.png) | react-router-6.24.1 | +| [error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png](./react-router/react-router-6.24.1/graph-visualization-java-artifact-dependencies/error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png) | react-router-6.24.1 | +| [graphVisualizationTypescriptModuleDependencies-0.png](./react-router/react-router-6.24.1/graph-visualization-typescript-module-dependencies/graphVisualizationTypescriptModuleDependencies-0.png) | react-router-6.24.1 | +| [NodeEmbeddingsTypescript_21_0.png](./react-router/react-router-6.24.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_21_0.png) | react-router-6.24.1 | +| [NodeEmbeddingsTypescript_23_7.png](./react-router/react-router-6.24.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_23_7.png) | react-router-6.24.1 | +| [NodeEmbeddingsTypescript_25_6.png](./react-router/react-router-6.24.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_25_6.png) | react-router-6.24.1 | +| [ObjectOrientedDesignMetricsTypescript_28_0.png](./react-router/react-router-6.24.1/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript_files/ObjectOrientedDesignMetricsTypescript_28_0.png) | react-router-6.24.1 | +| [OverviewGeneral_13_1.png](./react-router/react-router-6.24.1/overview-general/OverviewGeneral_files/OverviewGeneral_13_1.png) | react-router-6.24.1 | +| [OverviewGeneral_17_1.png](./react-router/react-router-6.24.1/overview-general/OverviewGeneral_files/OverviewGeneral_17_1.png) | react-router-6.24.1 | +| [OverviewGeneral_21_1.png](./react-router/react-router-6.24.1/overview-general/OverviewGeneral_files/OverviewGeneral_21_1.png) | react-router-6.24.1 | +| [OverviewGeneral_26_1.png](./react-router/react-router-6.24.1/overview-general/OverviewGeneral_files/OverviewGeneral_26_1.png) | react-router-6.24.1 | +| [OverviewGeneral_30_1.png](./react-router/react-router-6.24.1/overview-general/OverviewGeneral_files/OverviewGeneral_30_1.png) | react-router-6.24.1 | +| [OverviewTypescript_17_1.png](./react-router/react-router-6.24.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_17_1.png) | react-router-6.24.1 | +| [OverviewTypescript_21_1.png](./react-router/react-router-6.24.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_21_1.png) | react-router-6.24.1 | +| [OverviewTypescript_23_1.png](./react-router/react-router-6.24.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_23_1.png) | react-router-6.24.1 | +| [OverviewTypescript_25_1.png](./react-router/react-router-6.24.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_25_1.png) | react-router-6.24.1 | +| [OverviewTypescript_27_1.png](./react-router/react-router-6.24.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_27_1.png) | react-router-6.24.1 | +| [VisibilityMetricsTypescript_17_2.png](./react-router/react-router-6.24.1/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_17_2.png) | react-router-6.24.1 | +| [VisibilityMetricsTypescript_24_2.png](./react-router/react-router-6.24.1/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_24_2.png) | react-router-6.24.1 | +| [Wordcloud_10_1.png](./react-router/react-router-6.24.1/wordcloud/Wordcloud_files/Wordcloud_10_1.png) | react-router-6.24.1 | +| [ExternalDependenciesTypescript_14_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_14_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_17_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_17_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_21_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_21_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_23_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_23_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_35_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_35_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_37_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_37_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_42_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_42_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_44_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_44_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_46_0.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_46_0.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_62_1.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_62_1.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_64_1.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_64_1.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_77_1.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_77_1.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_79_1.png](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_79_1.png) | react-router-6.25.1 | +| [error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png](./react-router/react-router-6.25.1/graph-visualization-java-artifact-dependencies/error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png) | react-router-6.25.1 | +| [graphVisualizationTypescriptModuleDependencies-0.png](./react-router/react-router-6.25.1/graph-visualization-typescript-module-dependencies/graphVisualizationTypescriptModuleDependencies-0.png) | react-router-6.25.1 | +| [NodeEmbeddingsTypescript_21_0.png](./react-router/react-router-6.25.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_21_0.png) | react-router-6.25.1 | +| [NodeEmbeddingsTypescript_23_6.png](./react-router/react-router-6.25.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_23_6.png) | react-router-6.25.1 | +| [NodeEmbeddingsTypescript_25_6.png](./react-router/react-router-6.25.1/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_25_6.png) | react-router-6.25.1 | +| [ObjectOrientedDesignMetricsTypescript_28_0.png](./react-router/react-router-6.25.1/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript_files/ObjectOrientedDesignMetricsTypescript_28_0.png) | react-router-6.25.1 | +| [OverviewGeneral_13_1.png](./react-router/react-router-6.25.1/overview-general/OverviewGeneral_files/OverviewGeneral_13_1.png) | react-router-6.25.1 | +| [OverviewGeneral_17_1.png](./react-router/react-router-6.25.1/overview-general/OverviewGeneral_files/OverviewGeneral_17_1.png) | react-router-6.25.1 | +| [OverviewGeneral_21_1.png](./react-router/react-router-6.25.1/overview-general/OverviewGeneral_files/OverviewGeneral_21_1.png) | react-router-6.25.1 | +| [OverviewGeneral_26_1.png](./react-router/react-router-6.25.1/overview-general/OverviewGeneral_files/OverviewGeneral_26_1.png) | react-router-6.25.1 | +| [OverviewGeneral_30_1.png](./react-router/react-router-6.25.1/overview-general/OverviewGeneral_files/OverviewGeneral_30_1.png) | react-router-6.25.1 | +| [OverviewTypescript_17_1.png](./react-router/react-router-6.25.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_17_1.png) | react-router-6.25.1 | +| [OverviewTypescript_21_1.png](./react-router/react-router-6.25.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_21_1.png) | react-router-6.25.1 | +| [OverviewTypescript_23_1.png](./react-router/react-router-6.25.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_23_1.png) | react-router-6.25.1 | +| [OverviewTypescript_25_1.png](./react-router/react-router-6.25.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_25_1.png) | react-router-6.25.1 | +| [OverviewTypescript_27_1.png](./react-router/react-router-6.25.1/overview-typescript/OverviewTypescript_files/OverviewTypescript_27_1.png) | react-router-6.25.1 | +| [VisibilityMetricsTypescript_17_2.png](./react-router/react-router-6.25.1/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_17_2.png) | react-router-6.25.1 | +| [VisibilityMetricsTypescript_24_2.png](./react-router/react-router-6.25.1/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_24_2.png) | react-router-6.25.1 | +| [Wordcloud_10_1.png](./react-router/react-router-6.25.1/wordcloud/Wordcloud_files/Wordcloud_10_1.png) | react-router-6.25.1 | +| [ExternalDependenciesTypescript_16_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_16_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_20_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_20_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_26_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_26_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_30_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_30_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_44_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_44_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_48_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_48_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_55_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_55_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_59_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_59_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_63_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_63_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_81_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_81_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_83_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_83_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_96_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_96_1.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_98_1.png](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_98_1.png) | react-router-6.26.2 | +| [error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png](./react-router/react-router-6.26.2/graph-visualization-java-artifact-dependencies/error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png) | react-router-6.26.2 | +| [graphVisualizationTypescriptModuleDependencies-0.png](./react-router/react-router-6.26.2/graph-visualization-typescript-module-dependencies/graphVisualizationTypescriptModuleDependencies-0.png) | react-router-6.26.2 | +| [NodeEmbeddingsTypescript_21_0.png](./react-router/react-router-6.26.2/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_21_0.png) | react-router-6.26.2 | +| [NodeEmbeddingsTypescript_23_7.png](./react-router/react-router-6.26.2/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_23_7.png) | react-router-6.26.2 | +| [NodeEmbeddingsTypescript_25_6.png](./react-router/react-router-6.26.2/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_25_6.png) | react-router-6.26.2 | +| [ObjectOrientedDesignMetricsTypescript_28_0.png](./react-router/react-router-6.26.2/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript_files/ObjectOrientedDesignMetricsTypescript_28_0.png) | react-router-6.26.2 | +| [OverviewGeneral_15_1.png](./react-router/react-router-6.26.2/overview-general/OverviewGeneral_files/OverviewGeneral_15_1.png) | react-router-6.26.2 | +| [OverviewGeneral_19_1.png](./react-router/react-router-6.26.2/overview-general/OverviewGeneral_files/OverviewGeneral_19_1.png) | react-router-6.26.2 | +| [OverviewGeneral_23_1.png](./react-router/react-router-6.26.2/overview-general/OverviewGeneral_files/OverviewGeneral_23_1.png) | react-router-6.26.2 | +| [OverviewGeneral_28_1.png](./react-router/react-router-6.26.2/overview-general/OverviewGeneral_files/OverviewGeneral_28_1.png) | react-router-6.26.2 | +| [OverviewGeneral_32_1.png](./react-router/react-router-6.26.2/overview-general/OverviewGeneral_files/OverviewGeneral_32_1.png) | react-router-6.26.2 | +| [OverviewTypescript_17_1.png](./react-router/react-router-6.26.2/overview-typescript/OverviewTypescript_files/OverviewTypescript_17_1.png) | react-router-6.26.2 | +| [OverviewTypescript_21_1.png](./react-router/react-router-6.26.2/overview-typescript/OverviewTypescript_files/OverviewTypescript_21_1.png) | react-router-6.26.2 | +| [OverviewTypescript_23_1.png](./react-router/react-router-6.26.2/overview-typescript/OverviewTypescript_files/OverviewTypescript_23_1.png) | react-router-6.26.2 | +| [OverviewTypescript_25_1.png](./react-router/react-router-6.26.2/overview-typescript/OverviewTypescript_files/OverviewTypescript_25_1.png) | react-router-6.26.2 | +| [OverviewTypescript_27_1.png](./react-router/react-router-6.26.2/overview-typescript/OverviewTypescript_files/OverviewTypescript_27_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_37_0.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_37_0.png) | react-router-6.26.2 | +| [PathFindingTypescript_39_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_39_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_46_0.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_46_0.png) | react-router-6.26.2 | +| [PathFindingTypescript_49_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_49_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_52_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_52_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_57_0.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_57_0.png) | react-router-6.26.2 | +| [PathFindingTypescript_60_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_60_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_63_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_63_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_72_0.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_72_0.png) | react-router-6.26.2 | +| [PathFindingTypescript_74_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_74_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_81_0.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_81_0.png) | react-router-6.26.2 | +| [PathFindingTypescript_84_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_84_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_87_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_87_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_92_0.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_92_0.png) | react-router-6.26.2 | +| [PathFindingTypescript_95_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_95_1.png) | react-router-6.26.2 | +| [PathFindingTypescript_98_1.png](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_98_1.png) | react-router-6.26.2 | +| [VisibilityMetricsTypescript_17_2.png](./react-router/react-router-6.26.2/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_17_2.png) | react-router-6.26.2 | +| [VisibilityMetricsTypescript_24_2.png](./react-router/react-router-6.26.2/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_24_2.png) | react-router-6.26.2 | +| [Wordcloud_14_1.png](./react-router/react-router-6.26.2/wordcloud/Wordcloud_files/Wordcloud_14_1.png) | react-router-6.26.2 | +| [Wordcloud_17_0.png](./react-router/react-router-6.26.2/wordcloud/Wordcloud_files/Wordcloud_17_0.png) | react-router-6.26.2 | +| [ExternalDependenciesTypescript_16_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_16_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_20_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_20_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_26_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_26_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_30_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_30_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_44_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_44_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_48_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_48_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_55_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_55_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_59_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_59_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_63_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_63_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_81_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_81_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_83_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_83_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_96_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_96_1.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_98_1.png](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_98_1.png) | react-router-6.27.0 | +| [error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png](./react-router/react-router-6.27.0/graph-visualization-java-artifact-dependencies/error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png) | react-router-6.27.0 | +| [graphVisualizationTypescriptModuleDependencies-0.png](./react-router/react-router-6.27.0/graph-visualization-typescript-module-dependencies/graphVisualizationTypescriptModuleDependencies-0.png) | react-router-6.27.0 | +| [NodeEmbeddingsTypescript_21_0.png](./react-router/react-router-6.27.0/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_21_0.png) | react-router-6.27.0 | +| [NodeEmbeddingsTypescript_23_7.png](./react-router/react-router-6.27.0/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_23_7.png) | react-router-6.27.0 | +| [NodeEmbeddingsTypescript_25_6.png](./react-router/react-router-6.27.0/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_25_6.png) | react-router-6.27.0 | +| [ObjectOrientedDesignMetricsTypescript_28_0.png](./react-router/react-router-6.27.0/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript_files/ObjectOrientedDesignMetricsTypescript_28_0.png) | react-router-6.27.0 | +| [OverviewGeneral_15_1.png](./react-router/react-router-6.27.0/overview-general/OverviewGeneral_files/OverviewGeneral_15_1.png) | react-router-6.27.0 | +| [OverviewGeneral_19_1.png](./react-router/react-router-6.27.0/overview-general/OverviewGeneral_files/OverviewGeneral_19_1.png) | react-router-6.27.0 | +| [OverviewGeneral_23_1.png](./react-router/react-router-6.27.0/overview-general/OverviewGeneral_files/OverviewGeneral_23_1.png) | react-router-6.27.0 | +| [OverviewGeneral_28_1.png](./react-router/react-router-6.27.0/overview-general/OverviewGeneral_files/OverviewGeneral_28_1.png) | react-router-6.27.0 | +| [OverviewGeneral_32_1.png](./react-router/react-router-6.27.0/overview-general/OverviewGeneral_files/OverviewGeneral_32_1.png) | react-router-6.27.0 | +| [OverviewTypescript_17_1.png](./react-router/react-router-6.27.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_17_1.png) | react-router-6.27.0 | +| [OverviewTypescript_21_1.png](./react-router/react-router-6.27.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_21_1.png) | react-router-6.27.0 | +| [OverviewTypescript_23_1.png](./react-router/react-router-6.27.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_23_1.png) | react-router-6.27.0 | +| [OverviewTypescript_25_1.png](./react-router/react-router-6.27.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_25_1.png) | react-router-6.27.0 | +| [OverviewTypescript_27_1.png](./react-router/react-router-6.27.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_27_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_37_0.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_37_0.png) | react-router-6.27.0 | +| [PathFindingTypescript_39_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_39_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_46_0.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_46_0.png) | react-router-6.27.0 | +| [PathFindingTypescript_49_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_49_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_52_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_52_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_57_0.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_57_0.png) | react-router-6.27.0 | +| [PathFindingTypescript_60_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_60_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_63_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_63_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_72_0.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_72_0.png) | react-router-6.27.0 | +| [PathFindingTypescript_74_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_74_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_81_0.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_81_0.png) | react-router-6.27.0 | +| [PathFindingTypescript_84_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_84_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_87_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_87_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_92_0.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_92_0.png) | react-router-6.27.0 | +| [PathFindingTypescript_95_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_95_1.png) | react-router-6.27.0 | +| [PathFindingTypescript_98_1.png](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_98_1.png) | react-router-6.27.0 | +| [VisibilityMetricsTypescript_17_2.png](./react-router/react-router-6.27.0/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_17_2.png) | react-router-6.27.0 | +| [VisibilityMetricsTypescript_24_2.png](./react-router/react-router-6.27.0/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_24_2.png) | react-router-6.27.0 | +| [Wordcloud_14_1.png](./react-router/react-router-6.27.0/wordcloud/Wordcloud_files/Wordcloud_14_1.png) | react-router-6.27.0 | +| [Wordcloud_17_0.png](./react-router/react-router-6.27.0/wordcloud/Wordcloud_files/Wordcloud_17_0.png) | react-router-6.27.0 | +| [ExternalDependenciesTypescript_16_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_16_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_20_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_20_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_26_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_26_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_30_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_30_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_44_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_44_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_48_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_48_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_55_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_55_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_59_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_59_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_63_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_63_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_81_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_81_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_83_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_83_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_96_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_96_1.png) | react-router-6.28.0 | +| [ExternalDependenciesTypescript_98_1.png](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript_files/ExternalDependenciesTypescript_98_1.png) | react-router-6.28.0 | +| [error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png](./react-router/react-router-6.28.0/graph-visualization-java-artifact-dependencies/error-graphVisualizationJavaArtifactDependencies-no-canvas-found.png) | react-router-6.28.0 | +| [graphVisualizationTypescriptModuleDependencies-0.png](./react-router/react-router-6.28.0/graph-visualization-typescript-module-dependencies/graphVisualizationTypescriptModuleDependencies-0.png) | react-router-6.28.0 | +| [NodeEmbeddingsTypescript_21_0.png](./react-router/react-router-6.28.0/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_21_0.png) | react-router-6.28.0 | +| [NodeEmbeddingsTypescript_23_7.png](./react-router/react-router-6.28.0/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_23_7.png) | react-router-6.28.0 | +| [NodeEmbeddingsTypescript_25_6.png](./react-router/react-router-6.28.0/node-embeddings-typescript/NodeEmbeddingsTypescript_files/NodeEmbeddingsTypescript_25_6.png) | react-router-6.28.0 | +| [ObjectOrientedDesignMetricsTypescript_28_0.png](./react-router/react-router-6.28.0/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript_files/ObjectOrientedDesignMetricsTypescript_28_0.png) | react-router-6.28.0 | +| [OverviewGeneral_15_1.png](./react-router/react-router-6.28.0/overview-general/OverviewGeneral_files/OverviewGeneral_15_1.png) | react-router-6.28.0 | +| [OverviewGeneral_19_1.png](./react-router/react-router-6.28.0/overview-general/OverviewGeneral_files/OverviewGeneral_19_1.png) | react-router-6.28.0 | +| [OverviewGeneral_23_1.png](./react-router/react-router-6.28.0/overview-general/OverviewGeneral_files/OverviewGeneral_23_1.png) | react-router-6.28.0 | +| [OverviewGeneral_28_1.png](./react-router/react-router-6.28.0/overview-general/OverviewGeneral_files/OverviewGeneral_28_1.png) | react-router-6.28.0 | +| [OverviewGeneral_32_1.png](./react-router/react-router-6.28.0/overview-general/OverviewGeneral_files/OverviewGeneral_32_1.png) | react-router-6.28.0 | +| [OverviewTypescript_17_1.png](./react-router/react-router-6.28.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_17_1.png) | react-router-6.28.0 | +| [OverviewTypescript_21_1.png](./react-router/react-router-6.28.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_21_1.png) | react-router-6.28.0 | +| [OverviewTypescript_23_1.png](./react-router/react-router-6.28.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_23_1.png) | react-router-6.28.0 | +| [OverviewTypescript_25_1.png](./react-router/react-router-6.28.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_25_1.png) | react-router-6.28.0 | +| [OverviewTypescript_27_1.png](./react-router/react-router-6.28.0/overview-typescript/OverviewTypescript_files/OverviewTypescript_27_1.png) | react-router-6.28.0 | +| [PathFindingTypescript_37_0.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_37_0.png) | react-router-6.28.0 | +| [PathFindingTypescript_39_1.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_39_1.png) | react-router-6.28.0 | +| [PathFindingTypescript_57_0.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_57_0.png) | react-router-6.28.0 | +| [PathFindingTypescript_60_1.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_60_1.png) | react-router-6.28.0 | +| [PathFindingTypescript_72_0.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_72_0.png) | react-router-6.28.0 | +| [PathFindingTypescript_74_1.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_74_1.png) | react-router-6.28.0 | +| [PathFindingTypescript_92_0.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_92_0.png) | react-router-6.28.0 | +| [PathFindingTypescript_95_1.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_95_1.png) | react-router-6.28.0 | +| [PathFindingTypescript_98_1.png](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript_files/PathFindingTypescript_98_1.png) | react-router-6.28.0 | +| [VisibilityMetricsTypescript_17_2.png](./react-router/react-router-6.28.0/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_17_2.png) | react-router-6.28.0 | +| [VisibilityMetricsTypescript_24_2.png](./react-router/react-router-6.28.0/visibility-metrics-typescript/VisibilityMetricsTypescript_files/VisibilityMetricsTypescript_24_2.png) | react-router-6.28.0 | +| [Wordcloud_14_1.png](./react-router/react-router-6.28.0/wordcloud/Wordcloud_files/Wordcloud_14_1.png) | react-router-6.28.0 | +| [Wordcloud_17_0.png](./react-router/react-router-6.28.0/wordcloud/Wordcloud_files/Wordcloud_17_0.png) | react-router-6.28.0 | +| [OverviewGeneral_15_1.png](./react-router/react-router-6.28.1/overview-general/OverviewGeneral_files/OverviewGeneral_15_1.png) | react-router-6.28.1 | +| [OverviewGeneral_19_1.png](./react-router/react-router-6.28.1/overview-general/OverviewGeneral_files/OverviewGeneral_19_1.png) | react-router-6.28.1 | +| [OverviewGeneral_23_1.png](./react-router/react-router-6.28.1/overview-general/OverviewGeneral_files/OverviewGeneral_23_1.png) | react-router-6.28.1 | +| [OverviewGeneral_28_1.png](./react-router/react-router-6.28.1/overview-general/OverviewGeneral_files/OverviewGeneral_28_1.png) | react-router-6.28.1 | +| [OverviewGeneral_32_1.png](./react-router/react-router-6.28.1/overview-general/OverviewGeneral_files/OverviewGeneral_32_1.png) | react-router-6.28.1 | +| [Wordcloud_14_1.png](./react-router/react-router-6.28.1/wordcloud/Wordcloud_files/Wordcloud_14_1.png) | react-router-6.28.1 | diff --git a/analysis-results/JUPYTER_REPORTS.md b/analysis-results/JUPYTER_REPORTS.md new file mode 100644 index 00000000..4cf74d5c --- /dev/null +++ b/analysis-results/JUPYTER_REPORTS.md @@ -0,0 +1,131 @@ +# Jupyter Notebook Reports Reference + +This document serves as a reference for all Jupyter Notebook reports in the current directory and its subdirectories. +It provides a table listing each file and its corresponding description found in the first header line. +This file was generated with the script [generateJupyterReportReference.sh](./../documentation/analysis-reports-reference/generateJupyterReportReference.sh). + +Report | Analysis | Description +-------|----------|------------ +| [DependenciesGraphJava.md](./AxonFramework/AxonFramework-4.10.2/dependencies-graph-java/DependenciesGraphJava.md) | AxonFramework-4.10.2 | Artifact Dependencies | +| [ExternalDependenciesJava.md](./AxonFramework/AxonFramework-4.10.2/external-dependencies-java/ExternalDependenciesJava.md) | AxonFramework-4.10.2 | External Dependencies for Java | +| [InternalDependenciesJava.md](./AxonFramework/AxonFramework-4.10.2/internal-dependencies-java/InternalDependenciesJava.md) | AxonFramework-4.10.2 | Internal Dependencies | +| [MethodMetricsJava.md](./AxonFramework/AxonFramework-4.10.2/method-metrics-java/MethodMetricsJava.md) | AxonFramework-4.10.2 | Method Metrics | +| [NodeEmbeddingsJava.md](./AxonFramework/AxonFramework-4.10.2/node-embeddings-java/NodeEmbeddingsJava.md) | AxonFramework-4.10.2 | Node Embeddings | +| [ObjectOrientedDesignMetricsJava.md](./AxonFramework/AxonFramework-4.10.2/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava.md) | AxonFramework-4.10.2 | Object Oriented Design Quality Metrics | +| [OverviewGeneral.md](./AxonFramework/AxonFramework-4.10.2/overview-general/OverviewGeneral.md) | AxonFramework-4.10.2 | Overview in General | +| [OverviewJava.md](./AxonFramework/AxonFramework-4.10.2/overview-java/OverviewJava.md) | AxonFramework-4.10.2 | Overview for Java | +| [PathFindingJava.md](./AxonFramework/AxonFramework-4.10.2/path-finding-java/PathFindingJava.md) | AxonFramework-4.10.2 | Path Finding for Java | +| [VisibilityMetricsJava.md](./AxonFramework/AxonFramework-4.10.2/visibility-metrics-java/VisibilityMetricsJava.md) | AxonFramework-4.10.2 | Visibility Metrics for Java | +| [Wordcloud.md](./AxonFramework/AxonFramework-4.10.2/wordcloud/Wordcloud.md) | AxonFramework-4.10.2 | Wordcloud | +| [DependenciesGraphJava.md](./AxonFramework/AxonFramework-4.10.3/dependencies-graph-java/DependenciesGraphJava.md) | AxonFramework-4.10.3 | Artifact Dependencies | +| [ExternalDependenciesJava.md](./AxonFramework/AxonFramework-4.10.3/external-dependencies-java/ExternalDependenciesJava.md) | AxonFramework-4.10.3 | External Dependencies for Java | +| [InternalDependenciesJava.md](./AxonFramework/AxonFramework-4.10.3/internal-dependencies-java/InternalDependenciesJava.md) | AxonFramework-4.10.3 | Internal Dependencies | +| [MethodMetricsJava.md](./AxonFramework/AxonFramework-4.10.3/method-metrics-java/MethodMetricsJava.md) | AxonFramework-4.10.3 | Method Metrics | +| [NodeEmbeddingsJava.md](./AxonFramework/AxonFramework-4.10.3/node-embeddings-java/NodeEmbeddingsJava.md) | AxonFramework-4.10.3 | Node Embeddings | +| [ObjectOrientedDesignMetricsJava.md](./AxonFramework/AxonFramework-4.10.3/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava.md) | AxonFramework-4.10.3 | Object Oriented Design Quality Metrics | +| [OverviewGeneral.md](./AxonFramework/AxonFramework-4.10.3/overview-general/OverviewGeneral.md) | AxonFramework-4.10.3 | Overview in General | +| [OverviewJava.md](./AxonFramework/AxonFramework-4.10.3/overview-java/OverviewJava.md) | AxonFramework-4.10.3 | Overview for Java | +| [PathFindingJava.md](./AxonFramework/AxonFramework-4.10.3/path-finding-java/PathFindingJava.md) | AxonFramework-4.10.3 | Path Finding for Java | +| [VisibilityMetricsJava.md](./AxonFramework/AxonFramework-4.10.3/visibility-metrics-java/VisibilityMetricsJava.md) | AxonFramework-4.10.3 | Visibility Metrics for Java | +| [Wordcloud.md](./AxonFramework/AxonFramework-4.10.3/wordcloud/Wordcloud.md) | AxonFramework-4.10.3 | Wordcloud | +| [ArtifactDependencies.md](./AxonFramework/AxonFramework-4.6.8/artifact-dependencies/ArtifactDependencies.md) | AxonFramework-4.6.8 | Artifact Dependencies | +| [ExternalDependencies.md](./AxonFramework/AxonFramework-4.6.8/external-dependencies/ExternalDependencies.md) | AxonFramework-4.6.8 | External Dependencies | +| [InternalDependencies.md](./AxonFramework/AxonFramework-4.6.8/internal-dependencies/InternalDependencies.md) | AxonFramework-4.6.8 | Internal Dependencies | +| [MethodMetrics.md](./AxonFramework/AxonFramework-4.6.8/method-metrics/MethodMetrics.md) | AxonFramework-4.6.8 | Method Metrics | +| [NodeEmbeddings.md](./AxonFramework/AxonFramework-4.6.8/node-embeddings/NodeEmbeddings.md) | AxonFramework-4.6.8 | Node Embeddings | +| [ObjectOrientedDesignMetrics.md](./AxonFramework/AxonFramework-4.6.8/object-oriented-design-metrics/ObjectOrientedDesignMetrics.md) | AxonFramework-4.6.8 | Object Oriented Design Quality Metrics | +| [Overview.md](./AxonFramework/AxonFramework-4.6.8/overview/Overview.md) | AxonFramework-4.6.8 | Overview | +| [VisibilityMetrics.md](./AxonFramework/AxonFramework-4.6.8/visibility-metrics/VisibilityMetrics.md) | AxonFramework-4.6.8 | Visibility Metrics | +| [Wordcloud.md](./AxonFramework/AxonFramework-4.6.8/wordcloud/Wordcloud.md) | AxonFramework-4.6.8 | Wordcloud | +| [ArtifactDependencies.md](./AxonFramework/AxonFramework-4.7.6/artifact-dependencies/ArtifactDependencies.md) | AxonFramework-4.7.6 | Artifact Dependencies | +| [ExternalDependencies.md](./AxonFramework/AxonFramework-4.7.6/external-dependencies/ExternalDependencies.md) | AxonFramework-4.7.6 | External Dependencies | +| [InternalDependencies.md](./AxonFramework/AxonFramework-4.7.6/internal-dependencies/InternalDependencies.md) | AxonFramework-4.7.6 | Internal Dependencies | +| [MethodMetrics.md](./AxonFramework/AxonFramework-4.7.6/method-metrics/MethodMetrics.md) | AxonFramework-4.7.6 | Method Metrics | +| [NodeEmbeddings.md](./AxonFramework/AxonFramework-4.7.6/node-embeddings/NodeEmbeddings.md) | AxonFramework-4.7.6 | Node Embeddings | +| [ObjectOrientedDesignMetrics.md](./AxonFramework/AxonFramework-4.7.6/object-oriented-design-metrics/ObjectOrientedDesignMetrics.md) | AxonFramework-4.7.6 | Object Oriented Design Quality Metrics | +| [Overview.md](./AxonFramework/AxonFramework-4.7.6/overview/Overview.md) | AxonFramework-4.7.6 | Overview | +| [VisibilityMetrics.md](./AxonFramework/AxonFramework-4.7.6/visibility-metrics/VisibilityMetrics.md) | AxonFramework-4.7.6 | Visibility Metrics | +| [Wordcloud.md](./AxonFramework/AxonFramework-4.7.6/wordcloud/Wordcloud.md) | AxonFramework-4.7.6 | Wordcloud | +| [ArtifactDependencies.md](./AxonFramework/AxonFramework-4.8.3/artifact-dependencies/ArtifactDependencies.md) | AxonFramework-4.8.3 | Artifact Dependencies | +| [ExternalDependencies.md](./AxonFramework/AxonFramework-4.8.3/external-dependencies/ExternalDependencies.md) | AxonFramework-4.8.3 | External Dependencies | +| [InternalDependencies.md](./AxonFramework/AxonFramework-4.8.3/internal-dependencies/InternalDependencies.md) | AxonFramework-4.8.3 | Internal Dependencies | +| [MethodMetrics.md](./AxonFramework/AxonFramework-4.8.3/method-metrics/MethodMetrics.md) | AxonFramework-4.8.3 | Method Metrics | +| [NodeEmbeddings.md](./AxonFramework/AxonFramework-4.8.3/node-embeddings/NodeEmbeddings.md) | AxonFramework-4.8.3 | Node Embeddings | +| [ObjectOrientedDesignMetrics.md](./AxonFramework/AxonFramework-4.8.3/object-oriented-design-metrics/ObjectOrientedDesignMetrics.md) | AxonFramework-4.8.3 | Object Oriented Design Quality Metrics | +| [Overview.md](./AxonFramework/AxonFramework-4.8.3/overview/Overview.md) | AxonFramework-4.8.3 | Overview | +| [VisibilityMetrics.md](./AxonFramework/AxonFramework-4.8.3/visibility-metrics/VisibilityMetrics.md) | AxonFramework-4.8.3 | Visibility Metrics | +| [Wordcloud.md](./AxonFramework/AxonFramework-4.8.3/wordcloud/Wordcloud.md) | AxonFramework-4.8.3 | Wordcloud | +| [DependenciesGraphJava.md](./AxonFramework/AxonFramework-4.9.3/dependencies-graph-java/DependenciesGraphJava.md) | AxonFramework-4.9.3 | Artifact Dependencies | +| [ExternalDependenciesJava.md](./AxonFramework/AxonFramework-4.9.3/external-dependencies-java/ExternalDependenciesJava.md) | AxonFramework-4.9.3 | External Dependencies | +| [InternalDependenciesJava.md](./AxonFramework/AxonFramework-4.9.3/internal-dependencies-java/InternalDependenciesJava.md) | AxonFramework-4.9.3 | Internal Dependencies | +| [MethodMetricsJava.md](./AxonFramework/AxonFramework-4.9.3/method-metrics-java/MethodMetricsJava.md) | AxonFramework-4.9.3 | Method Metrics | +| [NodeEmbeddingsJava.md](./AxonFramework/AxonFramework-4.9.3/node-embeddings-java/NodeEmbeddingsJava.md) | AxonFramework-4.9.3 | Node Embeddings | +| [ObjectOrientedDesignMetricsJava.md](./AxonFramework/AxonFramework-4.9.3/object-oriented-design-metrics-java/ObjectOrientedDesignMetricsJava.md) | AxonFramework-4.9.3 | Object Oriented Design Quality Metrics | +| [OverviewGeneral.md](./AxonFramework/AxonFramework-4.9.3/overview-general/OverviewGeneral.md) | AxonFramework-4.9.3 | Overview in General | +| [OverviewJava.md](./AxonFramework/AxonFramework-4.9.3/overview-java/OverviewJava.md) | AxonFramework-4.9.3 | Overview for Java | +| [VisibilityMetricsJava.md](./AxonFramework/AxonFramework-4.9.3/visibility-metrics-java/VisibilityMetricsJava.md) | AxonFramework-4.9.3 | Visibility Metrics for Java | +| [Wordcloud.md](./AxonFramework/AxonFramework-4.9.3/wordcloud/Wordcloud.md) | AxonFramework-4.9.3 | Wordcloud | +| [ArtifactDependencies.md](./react-router/react-router-6.22.0/artifact-dependencies/ArtifactDependencies.md) | react-router-6.22.0 | Artifact Dependencies | +| [ExternalDependencies.md](./react-router/react-router-6.22.0/external-dependencies/ExternalDependencies.md) | react-router-6.22.0 | External Dependencies | +| [InternalDependencies.md](./react-router/react-router-6.22.0/internal-dependencies/InternalDependencies.md) | react-router-6.22.0 | Internal Dependencies | +| [MethodMetrics.md](./react-router/react-router-6.22.0/method-metrics/MethodMetrics.md) | react-router-6.22.0 | Method Metrics | +| [NodeEmbeddings.md](./react-router/react-router-6.22.0/node-embeddings/NodeEmbeddings.md) | react-router-6.22.0 | Node Embeddings | +| [ObjectOrientedDesignMetrics.md](./react-router/react-router-6.22.0/object-oriented-design-metrics/ObjectOrientedDesignMetrics.md) | react-router-6.22.0 | Object Oriented Design Quality Metrics | +| [Overview.md](./react-router/react-router-6.22.0/overview/Overview.md) | react-router-6.22.0 | Overview | +| [VisibilityMetrics.md](./react-router/react-router-6.22.0/visibility-metrics/VisibilityMetrics.md) | react-router-6.22.0 | Visibility Metrics | +| [Wordcloud.md](./react-router/react-router-6.22.0/wordcloud/Wordcloud.md) | react-router-6.22.0 | Wordcloud | +| [DependenciesGraphTypescript.md](./react-router/react-router-6.23.1/dependencies-graph-typescript/DependenciesGraphTypescript.md) | react-router-6.23.1 | Artifact Dependencies | +| [ExternalDependenciesTypescript.md](./react-router/react-router-6.23.1/external-dependencies-typescript/ExternalDependenciesTypescript.md) | react-router-6.23.1 | External Dependencies | +| [NodeEmbeddingsTypescript.md](./react-router/react-router-6.23.1/node-embeddings-typescript/NodeEmbeddingsTypescript.md) | react-router-6.23.1 | Node Embeddings | +| [ObjectOrientedDesignMetricsTypescript.md](./react-router/react-router-6.23.1/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript.md) | react-router-6.23.1 | Object Oriented Design Quality Metrics | +| [Wordcloud.md](./react-router/react-router-6.23.1/wordcloud/Wordcloud.md) | react-router-6.23.1 | Wordcloud | +| [DependenciesGraphTypescript.md](./react-router/react-router-6.24.1/dependencies-graph-typescript/DependenciesGraphTypescript.md) | react-router-6.24.1 | Artifact Dependencies | +| [ExternalDependenciesTypescript.md](./react-router/react-router-6.24.1/external-dependencies-typescript/ExternalDependenciesTypescript.md) | react-router-6.24.1 | External Dependencies | +| [InternalDependenciesTypescript.md](./react-router/react-router-6.24.1/internal-dependencies-typescript/InternalDependenciesTypescript.md) | react-router-6.24.1 | Internal Dependencies | +| [NodeEmbeddingsTypescript.md](./react-router/react-router-6.24.1/node-embeddings-typescript/NodeEmbeddingsTypescript.md) | react-router-6.24.1 | Node Embeddings | +| [ObjectOrientedDesignMetricsTypescript.md](./react-router/react-router-6.24.1/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript.md) | react-router-6.24.1 | Object Oriented Design Quality Metrics | +| [OverviewGeneral.md](./react-router/react-router-6.24.1/overview-general/OverviewGeneral.md) | react-router-6.24.1 | Overview in General | +| [OverviewTypescript.md](./react-router/react-router-6.24.1/overview-typescript/OverviewTypescript.md) | react-router-6.24.1 | Overview for Typescript | +| [VisibilityMetricsTypescript.md](./react-router/react-router-6.24.1/visibility-metrics-typescript/VisibilityMetricsTypescript.md) | react-router-6.24.1 | Visibility Metrics for Typescript | +| [Wordcloud.md](./react-router/react-router-6.24.1/wordcloud/Wordcloud.md) | react-router-6.24.1 | Wordcloud | +| [DependenciesGraphTypescript.md](./react-router/react-router-6.25.1/dependencies-graph-typescript/DependenciesGraphTypescript.md) | react-router-6.25.1 | Artifact Dependencies | +| [ExternalDependenciesTypescript.md](./react-router/react-router-6.25.1/external-dependencies-typescript/ExternalDependenciesTypescript.md) | react-router-6.25.1 | External Dependencies | +| [InternalDependenciesTypescript.md](./react-router/react-router-6.25.1/internal-dependencies-typescript/InternalDependenciesTypescript.md) | react-router-6.25.1 | Internal Dependencies | +| [NodeEmbeddingsTypescript.md](./react-router/react-router-6.25.1/node-embeddings-typescript/NodeEmbeddingsTypescript.md) | react-router-6.25.1 | Node Embeddings | +| [ObjectOrientedDesignMetricsTypescript.md](./react-router/react-router-6.25.1/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript.md) | react-router-6.25.1 | Object Oriented Design Quality Metrics | +| [OverviewGeneral.md](./react-router/react-router-6.25.1/overview-general/OverviewGeneral.md) | react-router-6.25.1 | Overview in General | +| [OverviewTypescript.md](./react-router/react-router-6.25.1/overview-typescript/OverviewTypescript.md) | react-router-6.25.1 | Overview for Typescript | +| [VisibilityMetricsTypescript.md](./react-router/react-router-6.25.1/visibility-metrics-typescript/VisibilityMetricsTypescript.md) | react-router-6.25.1 | Visibility Metrics for Typescript | +| [Wordcloud.md](./react-router/react-router-6.25.1/wordcloud/Wordcloud.md) | react-router-6.25.1 | Wordcloud | +| [DependenciesGraphTypescript.md](./react-router/react-router-6.26.2/dependencies-graph-typescript/DependenciesGraphTypescript.md) | react-router-6.26.2 | Artifact Dependencies | +| [ExternalDependenciesTypescript.md](./react-router/react-router-6.26.2/external-dependencies-typescript/ExternalDependenciesTypescript.md) | react-router-6.26.2 | External Dependencies for Typescript | +| [InternalDependenciesTypescript.md](./react-router/react-router-6.26.2/internal-dependencies-typescript/InternalDependenciesTypescript.md) | react-router-6.26.2 | Internal Dependencies | +| [NodeEmbeddingsTypescript.md](./react-router/react-router-6.26.2/node-embeddings-typescript/NodeEmbeddingsTypescript.md) | react-router-6.26.2 | Node Embeddings | +| [ObjectOrientedDesignMetricsTypescript.md](./react-router/react-router-6.26.2/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript.md) | react-router-6.26.2 | Object Oriented Design Quality Metrics | +| [OverviewGeneral.md](./react-router/react-router-6.26.2/overview-general/OverviewGeneral.md) | react-router-6.26.2 | Overview in General | +| [OverviewTypescript.md](./react-router/react-router-6.26.2/overview-typescript/OverviewTypescript.md) | react-router-6.26.2 | Overview for Typescript | +| [PathFindingTypescript.md](./react-router/react-router-6.26.2/path-finding-typescript/PathFindingTypescript.md) | react-router-6.26.2 | Path Finding for Typescript | +| [VisibilityMetricsTypescript.md](./react-router/react-router-6.26.2/visibility-metrics-typescript/VisibilityMetricsTypescript.md) | react-router-6.26.2 | Visibility Metrics for Typescript | +| [Wordcloud.md](./react-router/react-router-6.26.2/wordcloud/Wordcloud.md) | react-router-6.26.2 | Wordcloud | +| [DependenciesGraphTypescript.md](./react-router/react-router-6.27.0/dependencies-graph-typescript/DependenciesGraphTypescript.md) | react-router-6.27.0 | Artifact Dependencies | +| [ExternalDependenciesTypescript.md](./react-router/react-router-6.27.0/external-dependencies-typescript/ExternalDependenciesTypescript.md) | react-router-6.27.0 | External Dependencies for Typescript | +| [InternalDependenciesTypescript.md](./react-router/react-router-6.27.0/internal-dependencies-typescript/InternalDependenciesTypescript.md) | react-router-6.27.0 | Internal Dependencies | +| [NodeEmbeddingsTypescript.md](./react-router/react-router-6.27.0/node-embeddings-typescript/NodeEmbeddingsTypescript.md) | react-router-6.27.0 | Node Embeddings | +| [ObjectOrientedDesignMetricsTypescript.md](./react-router/react-router-6.27.0/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript.md) | react-router-6.27.0 | Object Oriented Design Quality Metrics | +| [OverviewGeneral.md](./react-router/react-router-6.27.0/overview-general/OverviewGeneral.md) | react-router-6.27.0 | Overview in General | +| [OverviewTypescript.md](./react-router/react-router-6.27.0/overview-typescript/OverviewTypescript.md) | react-router-6.27.0 | Overview for Typescript | +| [PathFindingTypescript.md](./react-router/react-router-6.27.0/path-finding-typescript/PathFindingTypescript.md) | react-router-6.27.0 | Path Finding for Typescript | +| [VisibilityMetricsTypescript.md](./react-router/react-router-6.27.0/visibility-metrics-typescript/VisibilityMetricsTypescript.md) | react-router-6.27.0 | Visibility Metrics for Typescript | +| [Wordcloud.md](./react-router/react-router-6.27.0/wordcloud/Wordcloud.md) | react-router-6.27.0 | Wordcloud | +| [DependenciesGraphTypescript.md](./react-router/react-router-6.28.0/dependencies-graph-typescript/DependenciesGraphTypescript.md) | react-router-6.28.0 | Artifact Dependencies | +| [ExternalDependenciesTypescript.md](./react-router/react-router-6.28.0/external-dependencies-typescript/ExternalDependenciesTypescript.md) | react-router-6.28.0 | External Dependencies for Typescript | +| [InternalDependenciesTypescript.md](./react-router/react-router-6.28.0/internal-dependencies-typescript/InternalDependenciesTypescript.md) | react-router-6.28.0 | Internal Dependencies | +| [NodeEmbeddingsTypescript.md](./react-router/react-router-6.28.0/node-embeddings-typescript/NodeEmbeddingsTypescript.md) | react-router-6.28.0 | Node Embeddings | +| [ObjectOrientedDesignMetricsTypescript.md](./react-router/react-router-6.28.0/object-oriented-design-metrics-typescript/ObjectOrientedDesignMetricsTypescript.md) | react-router-6.28.0 | Object Oriented Design Quality Metrics | +| [OverviewGeneral.md](./react-router/react-router-6.28.0/overview-general/OverviewGeneral.md) | react-router-6.28.0 | Overview in General | +| [OverviewTypescript.md](./react-router/react-router-6.28.0/overview-typescript/OverviewTypescript.md) | react-router-6.28.0 | Overview for Typescript | +| [PathFindingTypescript.md](./react-router/react-router-6.28.0/path-finding-typescript/PathFindingTypescript.md) | react-router-6.28.0 | Path Finding for Typescript | +| [VisibilityMetricsTypescript.md](./react-router/react-router-6.28.0/visibility-metrics-typescript/VisibilityMetricsTypescript.md) | react-router-6.28.0 | Visibility Metrics for Typescript | +| [Wordcloud.md](./react-router/react-router-6.28.0/wordcloud/Wordcloud.md) | react-router-6.28.0 | Wordcloud | +| [OverviewGeneral.md](./react-router/react-router-6.28.1/overview-general/OverviewGeneral.md) | react-router-6.28.1 | Overview in General | +| [Wordcloud.md](./react-router/react-router-6.28.1/wordcloud/Wordcloud.md) | react-router-6.28.1 | Wordcloud | diff --git a/documentation/analysis-reports-reference/generateCsvReportReference.sh b/documentation/analysis-reports-reference/generateCsvReportReference.sh new file mode 100755 index 00000000..fb545ed7 --- /dev/null +++ b/documentation/analysis-reports-reference/generateCsvReportReference.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +# Generates "CSV_REPORTS.md" containing a reference to all CSV cypher query reports in this directory and its subdirectories. + +# Note: This script was generated by Chat-GPT after some messages back and forth: +# https://chat.openai.com/share/0bd3cde7-32d0-460d-830c-79b7d00a2492 + +# Fail on any error ("-e" = exit on first error, "-o pipefail" exist on errors within piped commands) +set -o errexit -o pipefail + +# Output Markdown file name +markdown_file="CSV_REPORTS.md" + +# Function to count rows in a CSV file +count_rows() { + wc -l < "$1" +} + +# Function to extract the source query name from CSV header +get_source_query() { + header=$(head -n 1 "$1") + source_query=$(echo "$header" | sed -n 's/.*Source Cypher File: \(.*\)"/\1/p') + echo "$source_query" +} + +echo "generateCsvReportReference: Generating ${markdown_file}..." + +# Create the Markdown header +{ + echo "# CSV Cypher Query Result Reports Reference" + echo "" + echo "This document lists all CSV Cypher query result reports found in the current directory and its subdirectories." + echo "Each entry in the table below includes the file name, the analysis type, the number of rows in the CSV, and the source Cypher query." + echo "This file was automatically generated using the [generateCsvReportReference](./../documentation/analysis-reports-reference/generateCsvReportReference.sh) script." + echo "" + # Create the Markdown table header + echo "| CSV File | Analysis | Number of Rows | Source Query |" + echo "| -------- | -------- | -------------- | ------------ |" +} > "$markdown_file" + +# Find and process CSV files +find . -type f -name "*.csv" | sort | while IFS= read -r csv_file; do + num_rows=$(count_rows "$csv_file") + source_query=$(get_source_query "$csv_file") + + # Get the main directory name + main_dir=$(dirname "$csv_file" | cut -d '/' -f 3) + + # Get the base name of the file + base_name=$(basename "$csv_file") + + # Escape special characters for Markdown + csv_link=$(echo "$csv_file" | sed 's/\[/\\[/g; s/\]/\\]/g') + + # Create a link to the source query + source_query_link="./../cypher/$source_query" + + # Append a new row to the Markdown table + echo "| [$base_name]($csv_link) | $main_dir | $num_rows | [$source_query]($source_query_link) |" >> "$markdown_file" +done + +echo "generateCsvReportReference: Successfully generated ${markdown_file}." diff --git a/documentation/analysis-reports-reference/generateImageReference.sh b/documentation/analysis-reports-reference/generateImageReference.sh new file mode 100755 index 00000000..ffea0c4d --- /dev/null +++ b/documentation/analysis-reports-reference/generateImageReference.sh @@ -0,0 +1,49 @@ +#!/usr/bin/env bash + +# Generates "IMAGES.md" containing a reference to all images (PNG) in this directory and its subdirectories. + +# Fail on any error ("-e" = exit on first error, "-o pipefail" exist on errors within piped commands) +set -o errexit -o pipefail + +# Markdown file name +markdown_file="IMAGES.md" + +echo "generateImageReference: Generating ${markdown_file}..." + +{ + echo "# Image Reference" + echo "" + echo "This document serves as a reference for all images (PNG) in the current directory and its subdirectories." + echo "It provides a table listing each file and the analysis it belongs to." + echo "This file was generated with the script [generateImageReference.sh](./../documentation/analysis-reports-reference/generateImageReference.sh)." + echo "" + echo "Image | Analysis |" + echo "-------|----------|" +} > ${markdown_file} + +# Loop through all Markdown files in the current directory +find . -type f -name "*.png" | sort | while read -r image_file; do + # Trim leading and trailing whitespace + description=$(echo "${description}" | awk '{$1=$1;print}') + + # Extract the script file name without the path + filename=$(basename "$image_file") + + if [ "$filename" = "${markdown_file}" ]; then + continue + fi + + # Extract the script file path without the name + pathname=$(dirname "$image_file") + + # Extract the second part of the path after ./ that contains the analysis directory name + analysisname=$(echo "${pathname}" | cut -d/ -f 3) + + # Create a link to the script file in the table + link="[${filename}](${image_file})" + + # Add the script file and its description to the Markdown table + echo "| ${link} | ${analysisname%%.} |" >> ${markdown_file} +done + +echo "generateImageReference: Successfully generated ${markdown_file}." \ No newline at end of file diff --git a/documentation/analysis-reports-reference/generateJupyterReportReference.sh b/documentation/analysis-reports-reference/generateJupyterReportReference.sh new file mode 100755 index 00000000..6167246d --- /dev/null +++ b/documentation/analysis-reports-reference/generateJupyterReportReference.sh @@ -0,0 +1,56 @@ +#!/usr/bin/env bash + +# Generates "JUPYTER_REPORTS.md" containing a reference to all Jupyter Notebook Markdown reports in this directory and its subdirectories. +# This script was generated by Chat-GPT after some messages back and forth and then tuned manually. + +# Fail on any error ("-e" = exit on first error, "-o pipefail" exist on errors within piped commands) +set -o errexit -o pipefail + +# Markdown file name +markdown_file="JUPYTER_REPORTS.md" + +echo "generateJupyterReportReference: Generating ${markdown_file}..." + +{ + echo "# Jupyter Notebook Reports Reference" + echo "" + echo "This document serves as a reference for all Jupyter Notebook reports in the current directory and its subdirectories." + echo "It provides a table listing each file and its corresponding description found in the first header line." + echo "This file was generated with the script [generateJupyterReportReference.sh](./../documentation/analysis-reports-reference/generateJupyterReportReference.sh)." + echo "" + echo "Report | Analysis | Description" + echo "-------|----------|------------" +} > ${markdown_file} + +# Loop through all Markdown files in the current directory +find . -type f -name "*.md" | sort | while read -r report_file; do + # Extract the first non-empty line that starts with '#' + report_file_header_line=$(grep -m 1 -e '^#\+.*' "${report_file}") + + # Remove leading '#' characters and trim leading/trailing spaces + description=$(echo "${report_file_header_line}" | sed -E 's/^#+\s*//') + + # Trim leading and trailing whitespace + description=$(echo "${description}" | awk '{$1=$1;print}') + + # Extract the script file name without the path + filename=$(basename "$report_file") + + if [ "$filename" = "${markdown_file}" ]; then + continue + fi + + # Extract the script file path without the name + pathname=$(dirname "$report_file") + + # Extract the second part of the path after ./ that contains the analysis directory name + analysisname=$(echo "${pathname}" | cut -d/ -f 3) + + # Create a link to the script file in the table + link="[${filename}](${report_file})" + + # Add the script file and its description to the Markdown table + echo "| ${link} | ${analysisname%%.} | ${description} |" >> ${markdown_file} +done + +echo "generateJupyterReportReference: Successfully generated ${markdown_file}." \ No newline at end of file diff --git a/documentation/analysis-reports-reference/generateReportReferences.sh b/documentation/analysis-reports-reference/generateReportReferences.sh new file mode 100755 index 00000000..d5386f5c --- /dev/null +++ b/documentation/analysis-reports-reference/generateReportReferences.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +# Triggers the regeneration of all reference documentations for the reports inside the "results" directory. +# The generation to the reference documentations is delegated to the dedicated scripts. + +# Notice that this scripts needs to be executed within the "results" directory. + +# Requires generateJupyterReportReference.sh, generateCsvReportReference.sh, generateImageReference.sh + +# Fail on any error ("-e" = exit on first error, "-o pipefail" exist on errors within piped commands) +set -o errexit -o pipefail + +## Get this "scripts" directory if not already set +# Even if $BASH_SOURCE is made for Bourne-like shells it is also supported by others and therefore here the preferred solution. +# CDPATH reduces the scope of the cd command to potentially prevent unintended directory changes. +# This way non-standard tools like readlink aren't needed. +DOCUMENTATION_SCRIPT_DIR=${DOCUMENTATION_SCRIPT_DIR:-$( CDPATH=. cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P )} # Repository directory containing the shell scripts +echo "generateReportReferences: SCRIPTS_DIR=${DOCUMENTATION_SCRIPT_DIR}" + +# Generate JUPYTER_REPORTS.md containing a reference to all Jupyter Notebook Markdown reports in the "results" directory and its subdirectories. +source "${DOCUMENTATION_SCRIPT_DIR}/generateJupyterReportReference.sh" + +# Generate CSV_REPORTS.md containing a reference to all CSV cypher query reports in the "results" directory and its subdirectories. +source "${DOCUMENTATION_SCRIPT_DIR}/generateCsvReportReference.sh" + +# Generate IMAGES.md containing a reference to all PNG images in the "results" directory and its subdirectories. +source "${DOCUMENTATION_SCRIPT_DIR}/generateImageReference.sh" \ No newline at end of file