diff --git a/notebooks/README.md b/notebooks/README.md index 90bbd8142d4..d17edb8f129 100644 --- a/notebooks/README.md +++ b/notebooks/README.md @@ -16,12 +16,12 @@ This repository contains a collection of Jupyter Notebooks that outline how to r | | [Degree](algorithms/centrality/Degree.ipynb) | Compute Degree Centraility for each vertex | | | [Eigenvector](algorithms/centrality/Eigenvector.ipynb) | Compute Eigenvector for every vertex | | Community | | | -| | [Louvain](community/Louvain.ipynb) and Leiden | Identify clusters in a graph using both the Louvain and Leiden algorithms | -| | [ECG](community/ECG.ipynb) | Identify clusters in a graph using the Ensemble Clustering for Graph | -| | [K-Truss](community/ktruss.ipynb) | Extracts the K-Truss cluster | -| | [Spectral-Clustering](community/Spectral-Clustering.ipynb) | Identify clusters in a graph using Spectral Clustering with both
- Balanced Cut
- Modularity Modularity | -| | [Subgraph Extraction](community/Subgraph-Extraction.ipynb) | Compute a subgraph of the existing graph including only the specified vertices | -| | [Triangle Counting](community/Triangle-Counting.ipynb) | Count the number of Triangle in a graph | +| | [Louvain](algorithms/community/Louvain.ipynb) and Leiden | Identify clusters in a graph using both the Louvain and Leiden algorithms | +| | [ECG](algorithms/community/ECG.ipynb) | Identify clusters in a graph using the Ensemble Clustering for Graph | +| | [K-Truss](algorithms/community/ktruss.ipynb) | Extracts the K-Truss cluster | +| | [Spectral-Clustering](algorithms/community/Spectral-Clustering.ipynb) | Identify clusters in a graph using Spectral Clustering with both
- Balanced Cut
- Modularity Modularity | +| | [Subgraph Extraction](algorithms/community/Subgraph-Extraction.ipynb) | Compute a subgraph of the existing graph including only the specified vertices | +| | [Triangle Counting](algorithms/community/Triangle-Counting.ipynb) | Count the number of Triangle in a graph | | Components | | | | | [Connected Components](components/ConnectedComponents.ipynb) | Find weakly and strongly connected components in a graph | | Core | | | diff --git a/notebooks/algorithms/README.md b/notebooks/algorithms/README.md index 14b2929efac..bf0d6a3b27a 100644 --- a/notebooks/algorithms/README.md +++ b/notebooks/algorithms/README.md @@ -16,15 +16,14 @@ This repository contains a collection of Jupyter Notebooks that outline how to r | | [Betweenness](centrality/Betweenness.ipynb) | Compute both Edge and Vertex Betweenness centrality | | | [Degree](centrality/Degree.ipynb) | Compute Degree Centraility for each vertex | | | [Eigenvector](centrality/Eigenvector.ipynb) | Compute Eigenvector for every vertex | - -