Skip to content

Commit c24ce7c

Browse files
authored
Fix wrong example for sliding windows
1 parent add6b74 commit c24ce7c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/basics-tasks/CombiningData.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ Block policies have 2 additional parameters: `outsider` and `categoryNeighbours`
102102
103103
`CategoryNeighbours` is the number of the consecutive following elements a given element is combined with. For performance reasons, tuples of elements traditionally are not generated over the whole bin, but over several much smaller intervals.<br>
104104
Example: `categoryNeighbours = 4`, the bin contains elements at rows: 1, 3, 5, 6, 10, 13, 16, 19<br>
105-
Strictly upper pairs (different colors mark pairs from different 5-element combinations intervals): <span style="color:blue">(1, 3), ..., (1, 10), (3, 5), ..., (6, 10),</span> <span style="color:green">(3, 5), ..., (10, 13),</span> <span style="color:orange">(5, 6), ..., (13, 16),</span> ...<br>
106-
Note that some pairs get repeated, e.g., (3, 5).<br>
105+
Strictly upper pairs (different colors mark pairs from different 5-element combinations intervals): <span style="color:blue">(1, 3), ..., (1, 10),</span> <span style="color:green">(3, 5), ..., (3, 13),</span> <span style="color:orange">(5, 6), ..., (5, 16),</span> ...<br>
107106
To get the behavior without sliding windows, set category neighbours to a very high value.
108107
109108
Below, you can see a full example of block combinations in an analysis task:

0 commit comments

Comments
 (0)