Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
asjadnaqvi committed Sep 5, 2022
1 parent 47ac319 commit 4ae9fec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The summary of options is as follows:
| addbox | An experimental option to add a bounding box to the triangles. |


* Running the command automatically adds an identifier variable `_ID` that can be used to trace back triangles and Voronoi tessellations to the original observations.
**NOTE:** Running the command automatically adds an identifier variable `_ID` that can be used to trace back triangles and Voronoi tessellations to the original observations.



Expand All @@ -65,7 +65,7 @@ set scheme white_tableau
Generate some random data or use your own coordinates:

```applescript
set obs 1000 // works up to 10k observations
set obs 1000
set seed 1337
gen x = runiform(0,100)
Expand All @@ -77,6 +77,8 @@ drop if sqrt((x-50)^2 + (y-50)^2) > 50
drop if sqrt((x-50)^2 + (y-50)^2) < 20
```

Higher observations result in a higher processing time. For example, 12k data points roughly take a minute for generating the triangles and tessellations.

Run the command:

```applescript
Expand Down

0 comments on commit 4ae9fec

Please sign in to comment.