You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ NetLogo extension for DBSCAN clustering algorithm
4
4
The extension allows you to perform unsupervised density-based clustering of turtles/agents and patches based on specified variables or by proximity. The main advantage over supervised algorithms such as K-Means is that it is not necessary to specify the number of resulting clusters in advance.
5
5
6
6
This extension supports all versions of [NetLogo](https://ccl.northwestern.edu/netlogo/) from 5 onwards. This version (0.5) is focused on Netlogo 7.
7
-
Versions of this extension for NetLogo version 5 up to version 6.4 are provided in the repository branch v6.1 (including code examples). This Readme covers aspects specific to the latest extension version.
7
+
Versions of this extension (all versions up to 0.4) for NetLogo versions 5 up to version 6.4 are provided in the repository [branch v6.1](https://github.com/chrfrantz/NetLogo-Extension-DBSCAN/tree/v6.1) (including code examples). This Readme covers aspects specific to the latest extension version.
8
8
9
9
The feature set of the extension varies depending on the NetLogo version, with full feature support since NetLogo 6 onwards (see details below).
10
10
@@ -127,7 +127,7 @@ The clusters can then be used as shown in the section [**Clustering individuals
127
127
128
128
For more comprehensive examples for the feature set, try out the demo provided as part of the extension under [demo/dbscan-clustering-demo-v7.nlogox](https://github.com/chrfrantz/NetLogo-Extension-DBSCAN/blob/master/demo/dbscan-clustering-demo-v7.nlogox).
129
129
130
-
Demo models for NetLogo versions 5 and 6 are provided alongside versions 0.4 of the extension (see repository branch v6.1).
130
+
Demo models for NetLogo versions 5 and 6 are provided alongside versions 0.4 of the extension (see repository [branch v6.1](https://github.com/chrfrantz/NetLogo-Extension-DBSCAN/tree/v6.1)).
131
131
132
132
Clustering agents by location should produce the following output (in this example the cluster centroid is shown as a coloured patch).
133
133
@@ -159,7 +159,7 @@ You can build the extension for NetLogo 7 from scratch using [maven](https://mav
159
159
160
160
* Simply run `mvn clean package` in the repository directory.
161
161
162
-
* For older NetLogo versions, please consult the Readme in branch v6.1 (it also covers installation aspects related to Netlogo version 5).
162
+
* For older NetLogo versions, please consult the [Readme in branch v6.1](https://github.com/chrfrantz/NetLogo-Extension-DBSCAN/tree/v6.1#readme) (it also covers installation aspects related to Netlogo version 5).
163
163
164
164
In addition, you will need to build the [DBSCAN repository](https://github.com/chrfrantz/DBSCAN.git) (Command: `mvn package`) which contains the underlying DBSCAN algorithm. Place both jar files in the extensions subfolder `dbscan` (following the structure described under Variant 2). Note that all builds have been primarily tested using Java 11.
0 commit comments